Skip to content

Instantly share code, notes, and snippets.

@ifnull
Created November 22, 2013 19:42
Show Gist options
  • Save ifnull/7605632 to your computer and use it in GitHub Desktop.
Save ifnull/7605632 to your computer and use it in GitHub Desktop.
Magento Memcache configuration
<cache>
<backend>memcached</backend><!-- apc / memcached / empty=file -->
<memcached><!-- memcached cache backend related config -->
<servers><!-- any number of server nodes can be included -->
<server>
<host><![CDATA[127.0.0.1]]></host>
<port><![CDATA[11211]]></port>
<persistent><![CDATA[1]]></persistent>
</server>
</servers>
<compression><![CDATA[0]]></compression>
<cache_dir><![CDATA[]]></cache_dir>
<hashed_directory_level><![CDATA[]]></hashed_directory_level>
<hashed_directory_umask><![CDATA[]]></hashed_directory_umask>
<file_name_prefix><![CDATA[]]></file_name_prefix>
</memcached>
</cache>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment