We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
In client.py:zadd(), the member is converted to a string:
insert_count = lambda member, score: 1 if zset.insert(str(member), float(score)) else 0
but not also done in sortedset.py:zscore() and zrank(), so if you:
zadd(key, 12345, 1.0) zscore(key, 12345)
it fails to find the member.
The text was updated successfully, but these errors were encountered:
fix locationlabs#49 - convert member to string in zscore and zrank
4b6f4c0
Merge pull request #50 from noise/feature/issue49
b3e0b82
fix #49 - convert member to string in zscore and zrank
8994ebe
No branches or pull requests
In client.py:zadd(), the member is converted to a string:
but not also done in sortedset.py:zscore() and zrank(), so if you:
it fails to find the member.
The text was updated successfully, but these errors were encountered: