storeData() 공개 메소드

Cache data set.
public storeData ( string $data_id, string $data )
$data_id string ID of the data set.
$data string The data to be cached.
예제 #1
0
파일: Data.php 프로젝트: jubinpatel/horde
 /**
  * Caches the data.
  */
 public function save()
 {
     $this->_cache->storeData($this->getDataId(), serialize($this->_data));
 }