Ejemplo n.º 1
0
 /**
  * Return an array of stored cache ids which don't match given tags
  *
  * In case of multiple tags, a logical OR is made between tags
  *
  * @param array $tags array of tags
  * @return array array of not matching cache ids (string)
  */
 public function getIdsNotMatchingTags($tags = array())
 {
     return $this->_slowBackend->getIdsNotMatchingTags($tags);
 }
 /**
  * Return an array of stored cache ids which don't match given tags
  *
  * In case of multiple tags, a logical OR is made between tags
  *
  * @param string[] $tags array of tags
  * @return string[] array of not matching cache ids (string)
  */
 public function getIdsNotMatchingTags($tags = [])
 {
     return $this->_backend->getIdsNotMatchingTags($tags);
 }