memcache won't store key/value because the value is too big.

Posted by alex on Stack Overflow See other posts from Stack Overflow or by alex
Published on 2010-05-26T23:09:45Z Indexed on 2010/05/26 23:11 UTC
Read the original article Hit count: 206

Filed under:
|
|
|
cache.set(key, Biglist, 3600)
print cache.get(key)

When my "Biglist" is a huge list of lots of content, it doesn't seem to store.

But when I change it to small text like "abc", it stores.

What do I have to configure so that I can set my memcache to accept unlimited size of key/value?

© Stack Overflow or respective owner

Related posts about python

Related posts about django