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
SPOP key [count] http://redis.io/commands/spop Redis command SPOP can use with default parameter 'count' .
But currently there is no parameter for count option. RedisValue SetPop(RedisKey key, CommandFlags flags = CommandFlags.None);
I think need to implement below method. RedisValue SetPop(RedisKey key, long count = 0, CommandFlags flags = CommandFlags.None);
Thanks
The text was updated successfully, but these errors were encountered:
Added to #528 for tracking.
Sorry, something went wrong.
Add SetPop/SetPopAsync count overloads
bf06daf
This API was missing - resolves #203
PR open for this in #874
53127b8
Merged into pipelines, closing this out as complete for v2 :)
pipelines
NickCraver
No branches or pull requests
SPOP key [count] http://redis.io/commands/spop
Redis command SPOP can use with default parameter 'count' .
But currently there is no parameter for count option.
RedisValue SetPop(RedisKey key, CommandFlags flags = CommandFlags.None);
I think need to implement below method.
RedisValue SetPop(RedisKey key, long count = 0, CommandFlags flags = CommandFlags.None);
Thanks
The text was updated successfully, but these errors were encountered: