Details
-
Type:
Docs: Problem
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.8.2
-
Fix Version/s: 1.9.2
-
Component/s: Zend_Cache
-
Labels:None
-
Language:English
-
Tags:
Description
There is no description in the docs how to instatiate the ZendServer cache backends
This wont work:
$cache = Zend_Cache::factory('Core',
'ZendServer_ShMem',
$frontendOptions,
$backendOptions
);
The problem is the name normalize function.
The 6. parameter has to be true and the name have to be full written.
$cache = Zend_Cache::factory('Core',
'Zend_Cache_Backend_ZendServer_ShMem',
$frontendOptions,
$backendOptions,
false,
true
);
May it will be better the two backends move from backend/ZendServer/ to /backend/ and move the abstract class ZendServer to backend/ZendServer
change Assignee because I'm inactive now