Use memcached for session storage

Memcached is a general-purpose, distributed memory caching system. It is often used to speed up dynamic database-driven websites by caching data and objects in RAM to reduce the number of times an external data source (such as a database or API) must be read. (Source: Wikipedia)

Memcached provides a very large hash table that can be distributed across multiple machines. When the table is full, subsequent inserts cause older data to be purged in least recently used (LRU) order. The size of this hash table is often very large. (Source: memcached.org)

Magento uses memcached for session storage but not for page caching. For page caching, we recommend Redis or Varnish.

Refer to Why Redis is better for a list of advantages to using Redis.

Related topics