Reputation: 1159
Can Memcache be configured to use disk storage instead of RAM ?
I am running Memcache Server on High IO Amazon EC2 instance. The instance has 2TB of SSD storage available. Can I configure Memcache to use the SSD storage to store the cache contents ?
Thanks
Upvotes: 7
Views: 9047
Reputation: 11703
instead of memcache you could use redis witch write on disk and will use your ssd.
Upvotes: 0
Reputation: 3085
As far as I know this does not work. But there are alternatives as pointed out here: memcached-like key/value cache that uses both RAM and disk
Upvotes: 2