Browse Source

ZF-8690 Updated docs for cache manager resource plugin renaming. Note to self: Try to do it all in one commit a next time.

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20027 44c647ce-9c0f-0410-b52a-842ac1e357ba
freak 16 years ago
parent
commit
1b96369bf5

+ 13 - 13
documentation/manual/en/module_specs/Zend_Application-AvailableResources-CacheManager.xml → documentation/manual/en/module_specs/Zend_Application-AvailableResources-Cache.xml

@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- Reviewed: no -->
-<sect2 id="zend.application.available-resources.cachemanager">
-    <title>Zend_Application_Resource_Cachemanager</title>
+<sect2 id="zend.application.available-resources.cache">
+    <title>Zend_Application_Resource_Cache</title>
 
     <para>
-        <classname>Zend_Application_Resource_Cachemanager</classname> may be
+        <classname>Zend_Application_Resource_Cache</classname> may be
         utilised to configure a set of <classname>Zend_Cache</classname> option
         bundles for use when lazy loading caches using
         <classname>Zend_Cache_Manager</classname>
@@ -15,24 +15,24 @@
         to option templates used to instantiate a cache object on request.
     </para>
 
-    <example id="zend.application.available-resources.cachemanager.configExample">
-        <title>Sample Cachemanager resource configuration</title>
+    <example id="zend.application.available-resources.cache.configExample">
+        <title>Sample Cache resource configuration</title>
 
         <para>
             Below is a sample <acronym>INI</acronym> file showing how
             <classname>Zend_Cache_Manager</classname> may be configured. The format
-            is the Cachemanager resource prefix (resources.cachemanager) followed
-            be the name to assign to an option cache template/bundle (e.g.
-            resources.cachemanager.database) and finally followed by a typical
+            is the Cache resource prefix (resources.cache) followed
+            by the name to assign to an option cache template/bundle (e.g.
+            resources.cache.database) and finally followed by a typical
             <classname>Zend_Cache</classname> option.
         </para>
 
         <programlisting language="ini"><![CDATA[
-resources.cachemanager.database.frontend.name = Core
-resources.cachemanager.database.frontend.options.lifetime = 7200
-resources.cachemanager.database.frontend.options.automatic_serialization = true
-resources.cachemanager.database.backend.name = File
-resources.cachemanager.database.backend.options.cache_dir = "/path/to/cache"
+resources.cache.database.frontend.name = Core
+resources.cache.database.frontend.options.lifetime = 7200
+resources.cache.database.frontend.options.automatic_serialization = true
+resources.cache.database.backend.name = File
+resources.cache.database.backend.options.cache_dir = "/path/to/cache"
 ]]></programlisting>
 
         <para>

+ 1 - 1
documentation/manual/en/module_specs/Zend_Cache-Cache_Manager.xml

@@ -178,7 +178,7 @@ $databaseCache = $manager->getCache('database');
 
     <para>
         To assist in making the Cache Manager more useful, it is accompanied by
-        <classname>Zend_Application_Resource_Cachemanager</classname> and also
+        <classname>Zend_Application_Resource_Cache</classname> and also
         the <classname>Zend_Controller_Action_Helper_Cache</classname> Action
         Helper. Both of these are described in their relevant areas of the
         Reference Guide.