예제 #1
0
 /**
  * Save some string datas into a cache record
  *
  * Note : $data is always "string" (serialization is done by the
  * core not by the backend)
  *
  * @param  string  $data             Datas to cache
  * @param  string  $id               Cache id
  * @param  array   $tags             Array of strings, the cache record will be tagged by each string entry
  * @param  int     $specificLifetime If != false, set a specific lifetime for this cache record (null => infinite lifetime)
  * @return boolean True if no problem
  */
 public function save($data, $id, $tags = array(), $specificLifetime = false)
 {
     \App_Util_Object::cloneTo($data, $this->_data[$id]);
     return true;
 }
예제 #2
0
 public function __clone()
 {
     $this->_data = \App_Util_Object::cloneMe($this->_data);
 }