You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe
When measuring code that uses BITFIELD intensively in profiler, I saw that a non-trivial amount of time was spent creating Redis commands (more so than actually dispatching).
I replaced String.format w/ String concatenation and profiled the app under high load and it basically became insignificant
Describe the solution you'd like
I replaced my usage of lettuce 5.1.7.RELEASE with my 6.0 snapshot with these changes ianpojman#1
and per the profiler I saw I reasonable improvement in time spent in AbstractRedisAsyncCommands.bitfield() runtime.
Feature Request
Is your feature request related to a problem? Please describe
When measuring code that uses BITFIELD intensively in profiler, I saw that a non-trivial amount of time was spent creating Redis commands (more so than actually dispatching).
I replaced String.format w/ String concatenation and profiled the app under high load and it basically became insignificant
Describe the solution you'd like
I replaced my usage of lettuce 5.1.7.RELEASE with my 6.0 snapshot with these changes
ianpojman#1
and per the profiler I saw I reasonable improvement in time spent in
AbstractRedisAsyncCommands.bitfield()
runtime.Describe alternatives you've considered
Teachability, Documentation, Adoption, Migration Strategy
The text was updated successfully, but these errors were encountered: