-
Notifications
You must be signed in to change notification settings - Fork 284
New issue
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
RedisSessionStore - hkeys #1412
Comments
That's because you used a |
I'm using popFront(), while(x.hasNext), but the error is still there when I try to use RedisReply again. |
Do you have a code sample? |
`auto scan = redisDB.keys(pattern); while(scan.hasNext) { There, on hgetAll is where the exception appears:
|
You should use |
The problem is that your first {
auto scan = redisDB.keys(pattern);
while(scan.hasNext) {
keys ~= scan.front;
scan.popFront();
}
} |
You should avoid making calls that can throw inside |
Thaks for the advices, were useful. |
I cannot use de hkeys function on redis. There is an exception when I run it:
Any idea?
The text was updated successfully, but these errors were encountered: