예제 #1
0
파일: core.php 프로젝트: Ignite-IT/enolaphp
 /**
  * Elimina un atributo en cache a nivel aplicacion.
  * @param string $key
  * @return boolean
  */
 public function deleteAttribute($key)
 {
     return $this->cache->delete($this->prefixApp . $key);
 }
예제 #2
0
 /**
  * Elimina un valor en cache asociado a una clave
  * @param string $key
  */
 public function delete($key)
 {
     return $this->store->delete($this->realKey($key));
 }