Skip to content
Snippets Groups Projects
Select Git revision
  • d00e614d209b8b0790313b0917b6f8d3f8bede73
  • master default protected
  • Legacy_Php7
3 results

cache.class_config.php

Blame
  • cache.class_config.php 531 B
    <?php
    /* 
     * CUSTOMIZE AhCache
     */
    
    // set a custom cache direcory
    $this->_sCacheDir="/var/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
    // with value 3: 2f9/ac5/0fd/254/ea4/c64/621/05c/b91/ee1/4a.cacheclass2
    // with value 8: 2f9ac50f/d254ea4c/6462105c/b91ee14a.cacheclass2
    // $this->_sCacheDirDevider=8;