The cache.class.php includes a cache.class_config.php by default.
If it exists in the same directory.
See the *dist* file and make a copy for your needs.
<?php /* * CUSTOMIZE AhCache */ // set a custom cache direcory // $this->_sCacheDir="/tmp/ahcache"; // if you have a large number of items to cache: // you can limit the files per cache subdir in an indirect way // The cachefile is a md5 hash. you can set a number of max characters // i.e. // cachefile 2f9ac50fd254ea4c6462105cb91ee14a.cacheclass2 // with value 8: 2f9ac50f/d254ea4c/6462105c/b91ee14a.cacheclass2 // with value 3: 2f9/ac5/0fd/254/ea4/c64/621/05c/b91/ee1/4a.cacheclass2 // $this->_sCacheDirDivider=16;
By default these options are commented / disabled.
Here you can override...