$memcache = new Phalcon\Session\Adapter\Memcache(array(
'host' => '127.0.0.1', // mandatory
'port' => 11211, // optional (standard: 11211)
'lifetime' => (60 * 60 * 24 * 30), // optional (standard: 8600)
'persistent' => false // optional (standard: false)
));
Good day! What is the maximum lifetime that can be set in parameter 'lifetime'?
If you set more than 30 days, then the plug-in does not work ... Need to be at least about 120 days
thx!