Mark Paluch

Results 867 comments of Mark Paluch

I'd like to elaborate a bit on your first point: > Specifying a request limit will block the sending of other queries while this one is in flight That's exactly...

ADBA requires: * DataSourceFactory * URL in addition to Driver/Username/Password. As of now, we don't have a proper implementation to test with so postponing implementation to a later time.

Let's keep it open until we have more substance that allows us to come to a decision.

That's a bug in neo4j, see https://github.com/spring-projects/spring-boot/issues/6709. There are a couple of workarounds. The easiest fix for now is starting that project in your IDE. Another one (not nice) is...

Generally, we attempt to be as light-weight as possible. `RedisClusterNode.slots` is designed to be `null` so it would make sense to update both, the constructor of `RedisClusterNode` to expect a...

Allocation of `BitSet` uses up a bit of memory and CPU, hence we resorted to `null`. If you want to follow the null object pattern, then introducing a `Slots` object...