[Fixed]-Python: Caching a 251mb hash in memory

1👍

If you’re not married to memcached, Redis has a maximum value size of 2GB per key. As long as you’re using Django’s built-in caching layer, then it’s a drop-in replacement after setting up the Redis server and reconfiguring your caching settings.

See also: https://github.com/niwinz/django-redis

👤Julien

Leave a comment