sewenew / redis-plus-plus

Redis client written in C++
Apache License 2.0
1.64k stars 351 forks source link

[FEATURE] Support for LMOVE / BLMOVE #560

Closed craigsoules closed 1 month ago

craigsoules commented 7 months ago

Is your feature request related to a problem? Please describe. There doesn't seem to be support for LMOVE or BLMOVE. They are new in Redis 6.2.

Describe the solution you'd like Support for those functions.

Describe alternatives you've considered Currently using BRPOPLPUSH, but it's more limiting in it's capabilities.

Additional context Thank you for your consideration!

sewenew commented 7 months ago

Before the feature is supported, you can use the generic command to send these commands.

Regards

craigsoules commented 7 months ago

Thank you for the tip! Really appreciate your work on this library.

sewenew commented 1 month ago

599 implements this feature.

Regards

craigsoules commented 1 month ago

Thank you so much for implementing this! Do you have a sense of when this will get bundled into a release?

sewenew commented 1 month ago

Release 1.3.13 is out, which contains this fix. Enjoy it :)