redis / redis-rb

A Ruby client library for Redis
MIT License
3.98k stars 1.03k forks source link

Support for RESP3 / protocol 3 #1297

Closed veesahni closed 4 weeks ago

veesahni commented 4 weeks ago

Does redis-rb support RESP3 / protocol 3?

byroot commented 4 weeks ago

Yes and no. You can instruct it to use the RESP3 protocol via Redis.new(protocol: 3) and it will work for some commands, but any command that return new RESP3 type may be broken.

If you are interested in RESP3 you are better off with redis-client directly: https://github.com/redis-rb/redis-client