Hi, i put in my phalcon project the memcache service for store a fast cache, in my services.php i put the little lifetime, but the lifetime doesnt is respected, what i did wrong in my project?
services.php
$di->set('modelsCache', function () use ($config){
$default = ["statsKey" => $config->application->baseUri, "persistent" => false, "host" => "127.0.0.1", "port" => 11211];
$frontCache = new \Phalcon\Cache\Frontend\Data(["lifetime" => 15]);
$cache = new \Ctrle\Library\Core\Cache\MemcacheAdapter($frontCache, $default);
return $cache;
});
If i do a modification in the database register, after 20 seconds i yet receive old version of cache