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
so there is this bit in redis_.py
def _format_key(self, key): return 'beaker:%s:%s' % (self.namespace, key.replace(' ', '\302\267'))
That generates a key like this:
beaker:f1d17960690c49a9807e5b4c2e29afd3:session
but one might expect
beaker:session:f1d17960690c49a9807e5b4c2e29afd3
If this was intended, there should be a note to let people know how/where to look for their data.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
so there is this bit in redis_.py
That generates a key like this:
but one might expect
If this was intended, there should be a note to let people know how/where to look for their data.
The text was updated successfully, but these errors were encountered: