Hello!
I am using Phalcon ModelMetadata Apc for sroting info about Models
$di->setShared('modelsMetadata', function () {
$metadata = new \Phalcon\Mvc\Model\MetaData\Apc([
'lifetime' => 86400,
'prefix' => 'my-prefix'
]);
return $metadata;
});
So, and detected a seldom warning: Warning: apc_store(): GC cache entry '$PMM$my-prefixmeta-signlog-signlog' was on gc-list for 6487 seconds in /____/app/controllers/PayController.php on line 17
On this 17 line there is a creation of Transaction \Phalcon\Mvc\Model
$transaction->create()
So, it is the first time I detected this warning. What happened?