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