Tihomir Krasimirov Mateev
Tihomir Krasimirov Mateev
> By reading code, this one (routing based on first command key) is the truth and that is why ssubscribe (but also subscribe, despite it can be sent to any...
> @tishun Hi, bro, could you help evaluate this PR? Got huge performance gain! Hey @okg-cxf , thanks for filing this PR. Since it is a large change that touches...
Let's keep this open, I'd like to revisit it
Hey @Wuuqy , I am having trouble understanding the issue you are describing. Could you provide a way for me to reproduce it? > ```java > // currently can not...
> I do - however - feel we might want to call the super-method, because it seems to me we are not guarded against #1576 @mp911de, what do you think?
> `command.completeExceptionally` should be replaced with a call to `super.completeExceptionally(…)`. Probably an oversight when migrating to `CommandWrapper` as already the previous code used `command.completeExceptionally` and not `super.…` Thanks for the...
Apologies for the late reply on this topic. Could you please share the exact code that lead to this issue? A [minimum reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) would be perfect! I am not...
Oh, I get the problem now, thank you for clarifying. The problem is that ... * ... the Lettuce API has offset defined with a primitive Java `int` which is...
I assume that the offset is something you are handling as `long` when calculating it, correct? There is multiple ways you can convert from long to unsigned int: ```java int...
Also - another thing - if we use the `int` approach we would not have to alter the existing API, otherwise we would have to deprecate the existing methods and...