beaker_extensions icon indicating copy to clipboard operation
beaker_extensions copied to clipboard

redis key info is essentially backwards

Open jvanasco opened this issue 9 years ago • 0 comments

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.

jvanasco avatar May 21 '15 02:05 jvanasco