Im using the memcached
module on AWS Elasticache
in my python Flask app (with Flask-Cache
)
When i try to set a file that is less than 1MB
i need to repeatedly access to the cache, i have no issues. But when the file size increases more than a MB (the file could be a text file/csv/xlsx etc), i get the following error
Error: error 37 from memcached_set: SUCCESS
Im guessing its because of the size limit on a memcached item which is capped at 1MB. How do i increase this item limit to say 5-6 MB in AWS Elasticache ?
Are there any issues in increasing this item size limit in memcached ?