predis/predis

Missing BITFIELD_RO support

Opened this issue · 1 comments

Seems that predis is missing BITFIELD_RO support. It was added since Redis 6.0

https://redis.io/commands/bitfield_ro/

Currently an exception is thrown:

[Predis\ClientException]
  Command `BITFIELD_RO` is not a registered Redis command.

You can use $client->executeRaw(['BITFIELD_RO', 'foo']); in the meantime.