Agoston Horvath

Results 7 comments of Agoston Horvath

DBRef is a weird abomination, it informs **mongodb client** to initiate yet-another lookup for another document. So it's all client-side. That's why I never imagined anyone would try to use...

Thanks :) Will keep this bug open, as indeed this is a shortcoming that others might run into as well. It's best to be open about it.

DbRef is a hackish convenience shortcut. I never had to use it, and especially with joins in mongodb 4, I don't see any reason to keep using it. I'm more...

As always, I welcome PRs, but I don't want to spend time on this functionality for the reasons explained above.

That seems a complicated way to invoke `mongoTemplate.save()`. `.update()`/`.upsert()` is really meant for atomically manipulating a few fields, and that's also why it's hard to hook into this. We could...

If you check `CachedEncryptionEventListener.cryptDocument()`, it effectively does this for encrypting a field in a `Document`: ```java Object value = document.get(childNode.documentName); document.put(childNode.documentName, crypt.apply(value)); ``` where `crypt = new Encoder()`. So it...

Hi! Thanks for the report. Some operations are not supported, since they do not go through the 'normal' spring-data save/load events. This is one of those. There is no actual...