Open PragmaTwice opened 2 weeks ago
Closes #.
Currently only read and write is supported for redis service.
After #5208 we can have a better support for kv scanning, so list supporting for redis is relatively easy to implement and can be efficient.
We support (async) list operation for redis service via kv::Adaptor::scan to fetch paged key lists with a prefix using Redis SCAN command.
kv::Adaptor::scan
User now can perform list on redis schema.
Funny to see it succeeded on redis but failed on redis cluster and kvrocks.
Fixed.
Which issue does this PR close?
Closes #.
Rationale for this change
Currently only read and write is supported for redis service.
After #5208 we can have a better support for kv scanning, so list supporting for redis is relatively easy to implement and can be efficient.
What changes are included in this PR?
We support (async) list operation for redis service via
kv::Adaptor::scan
to fetch paged key lists with a prefix using Redis SCAN command.Are there any user-facing changes?
User now can perform list on redis schema.