I am using Django-Redis to store some simple data.
Everything works fine for me, but I am wondering why Django-Redis prepends to every key that I save the string :1:
.
SET Key and Value (working)
cache.set("foo", "bar", timeout=100)
GET Key and Value (working)
print cache.get("foo")
Redis CLI
1) ":1:foo"
GET Key in CLI
GET foo
Result: (nil)
GET :1:foo
Result: "\x80\x02U\x06barXq\x01."
Best regards