Christoph Strobl

Results 339 comments of Christoph Strobl

That's a flaw we need to investigate since the Map value type is object and custom converter is registered no type info is written, so on read we cannot determine...

thanks for pointing that out - good catch.

This looks like a driver issue. @jyemin what do you think?

Please do not use an annotation that indicates an association between entities to prevent index creation, which is a different matter. In case autoindex does not work for you, consider...

Ran into the same issue with data-mongodb lazy loading proxies. I also had to add access to declared fields and ended up with this ```java Class proxyClass = LazyLoadingProxyFactory.resolveProxyType(field.getType(),() ->...

I totaly agree with hinding the Pool details so that one can call `getConnection()` without having to worry about the underlying pooling. Concerning the `Node` abstraction I think having dedicated...

FWIW I've tried to implement a small set of high level functions within spring data redis (see: [JedisClusterConnection.java](https://github.com/spring-projects/spring-data-redis/blob/issue/DATAREDIS-315/src/main/java/org/springframework/data/redis/connection/jedis/JedisClusterConnection.java)) based on a jedis 3.0 SNAPSHOT. Commands to multiple nodes are executed...

Thanks for reaching out and taking the time to provide a PR. We'll have a look.

@stefanbildl we've slightly revised the proposed fix. You may want to have a look at the current [issue branch](https://github.com/spring-projects/spring-data-mongodb/tree/issue/4612).