Memcache to use disk storage?

Can I configure Memcache to use disk storage instead of RAM?

I am running a Memcache server on a Amazon EC2 high-level IO instance. The instance has 2 TB of SSD storage. Can I configure Memcache to use SSD storage to store cache contents?

thank

+5
source share
3 answers

As far as I know, this does not work. But there are alternatives, as indicated here: memcached key / value cache, which uses both RAM and disk

+1
source

Twitter just released its Memcache on SSD called fatcache

+6
source

instead of memcache you can use redis witch write on disk and you will use your ssd.

0
source

All Articles