From 38c59ce5a4d627f386c5e4bacebe7fb50f12e3be Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Mon, 2 Dec 2013 14:59:04 +0100 Subject: [PATCH] Added documentation section for Memcached --- docs/en/reference/caching.rst | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/docs/en/reference/caching.rst b/docs/en/reference/caching.rst index d45090cbc..86cdef999 100644 --- a/docs/en/reference/caching.rst +++ b/docs/en/reference/caching.rst @@ -65,7 +65,7 @@ Memcache In order to use the Memcache cache driver you must have it compiled and enabled in your php.ini. You can read about Memcache -` on the PHP website `_. It will +` on the PHP website `_. It will give you a little background information about what it is and how you can use it as well as how to install it. @@ -82,6 +82,31 @@ driver by itself. $cacheDriver->setMemcache($memcache); $cacheDriver->save('cache_id', 'my_data'); +Memcached +~~~~~~~~ + +Memcached is a more recent and complete alternative extension to +Memcache. + +In order to use the Memcached cache driver you must have it compiled +and enabled in your php.ini. You can read about Memcached +` on the PHP website `_. It will +give you a little background information about what it is and how +you can use it as well as how to install it. + +Below is a simple example of how you could use the Memcached cache +driver by itself. + +.. code-block:: php + + addServer('memcache_host', 11211); + + $cacheDriver = new \Doctrine\Common\Cache\MemcachedCache(); + $cacheDriver->setMemcached($memcached); + $cacheDriver->save('cache_id', 'my_data'); + Xcache ~~~~~~