Skip to content
Snippets Groups Projects
Commit 57894edd authored by Tim Steiner's avatar Tim Steiner
Browse files

Turn off file locking when using the default Zend_Cache_File ticket cache. It...

Turn off file locking when using the default Zend_Cache_File ticket cache.  It has poor performance and doesn't even support NFS.
parent d033bb1a
Branches master
No related tags found
No related merge requests found
......@@ -323,7 +323,8 @@ class Unl_Cas
'automatic_serialization' => TRUE
);
$backendOptions = array(
'cache_dir' => $cache_dir
'cache_dir' => $cache_dir,
'file_locking' => FALSE
);
$this->_ticketCache = Zend_Cache::factory('Core', 'File', $frontendOptions, $backendOptions);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment