We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi folks, the TOPK.LIST command in Redis Bloom supports a WITHCOUNT parameter, which will return the counts along with the approximate list of items.
https://redis.io/commands/topk.list/
It would be great if this were supported by Jedis.
Expected API
public interface TopKFilterPipelineCommands { ... Response<List<String>> topkList(String key); Response<List<Tuple<String, Long>>> topkListWithCount(String key); ... }
There is no such functionality, so I think that I'll need to use eval and a Lua script.
N/A
4.4.0-m1
redis_version:6.2.6
8
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected behavior
Hi folks, the TOPK.LIST command in Redis Bloom supports a WITHCOUNT parameter, which will return the counts along with the approximate list of items.
https://redis.io/commands/topk.list/
It would be great if this were supported by Jedis.
Expected API
Actual behavior
There is no such functionality, so I think that I'll need to use eval and a Lua script.
Steps to reproduce:
N/A
Redis / Jedis Configuration
N/A
Jedis version:
4.4.0-m1
Redis version:
redis_version:6.2.6
Java version:
8
The text was updated successfully, but these errors were encountered: