skip to Main Content

Memcached – How does Cache Invalidation of symfony 3 work?

Hello I want to integrate the invalidation of cache of symfony but this one does not delete the cache I use memcached In the repository I add the tags $query = $this->getEntityManager()->createQuery($sql)->setParameters($params);   $cacheData = $cache->getItem(md5(serialize($query->getParameters())).$page);     if (!$cacheData->isHit())…

VIEW QUESTION
Back To Top
Search