Summary | Autoloader cache does not respect cache file prefix |
Queue | Horde Framework Packages |
Queue Version | Git master |
Type | Bug |
State | Not A Bug |
Priority | 1. Low |
Owners | |
Requester | thomas.jarosch (at) intra2net (dot) com |
Created | 11/22/2012 (4585 days ago) |
Due | |
Updated | 11/22/2012 (4585 days ago) |
Assigned | |
Resolved | 11/22/2012 (4585 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Not A Bug
is instantiated.
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Autoloader cache does not respect cache file prefix
Queue ⇒ Horde Framework Packages
Milestone ⇒
Patch ⇒ No
I've configured the horde cache to use files in /tmp and prefix them
with "horde":
$conf['cache']['default_lifetime'] = 86400;
$conf['cache']['params']['dir'] = '/tmp';
$conf['cache']['params']['sub'] = 0;
$conf['cache']['params']['prefix'] = 'horde';
$conf['cache']['driver'] = 'File';
$conf['cache']['compress'] = true;
$conf['cache']['use_memorycache'] = '';
Still one file in /tmp ignores the 'horde' prefix. Judging from the content,
it's the autoloader cache (it contains an array with the class names
as key and the full path to the file as value).
Thomas