From 95b8e27bc5ec26f7655a04cebba4de6edb71f297 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Tue, 23 Oct 2012 15:21:55 +0300 Subject: [PATCH] Removing removed API description from docs --- en/reference/caching.rst | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/en/reference/caching.rst b/en/reference/caching.rst index 52545d842..a008aa558 100644 --- a/en/reference/caching.rst +++ b/en/reference/caching.rst @@ -276,23 +276,6 @@ driver instance you can use the ``count()`` method. count(); -.. note:: - - In order to use ``deleteByRegex()``, ``deleteByPrefix()``, - ``deleteBySuffix()``, ``deleteAll()``, ``count()`` or ``getIds()`` - you must enable an option for the cache driver to manage your cache - IDs internally. This is necessary because APC, Memcache, etc. don't - have any advanced functionality for fetching and deleting. We add - some functionality on top of the cache drivers to maintain an index - of all the IDs stored in the cache driver so that we can allow more - granular deleting operations. - - :: - - setManageCacheIds(true); - - Namespaces ~~~~~~~~~~