'127.0.0.1', 'default_port' => 11211, 'default_weight' => 1); // TCP option // $_cache_config[] = array('default_host' => '/usr/local/var/run/memcache.sock', 'default_port' => 0, 'default_weight' => 1); // Unix socket option // MemCached caching option (database queries cache). Select only one $_cache_config option, TCP or Unix socket // define('OSC_CACHE', 'memcached'); // $_cache_config[] = array('default_host' => '127.0.0.1', 'default_port' => 11211, 'default_weight' => 1); // TCP option // $_cache_config[] = array('default_host' => '/usr/local/var/run/memcached.sock', 'default_port' => 0, 'default_weight' => 1); // Unix socket option // Redis caching option (database queries cache). Only one $_cache_config option supported, TCP or Unix socket // define('OSC_CACHE', 'redis'); // $_cache_config[] = array('default_host' => '127.0.0.1', 'default_port' => 6379, 'default_password' => ''); // TCP option // $_cache_config[] = array('default_host' => '/usr/local/var/run/redis.sock', 'default_port' => -1, 'default_password' => ''); // Unix socket option // Force disable URL encoding for non-latin characters // define('OSC_FORCE_DISABLE_URL_ENCODING', true); // Alpha & beta testing - experimental // define('ALPHA_TEST', true); // define('BETA_TEST', true); // Increase default login time for user // session_set_cookie_params(2592000); // ini_set('session.gc_maxlifetime', 2592000); ?>