Horde_Kolab_Storage_Cache::storeList PHP 메소드

storeList() 공개 메소드

Cache list data.
public storeList ( string $list_id, string $data )
$list_id string ID of the connection matching the list.
$data string The data to be cached.
    public function storeList($list_id, $data)
    {
        $this->_horde_cache->set($list_id, $data, 0);
    }

Usage Example

예제 #1
0
파일: Cache.php 프로젝트: raz0rsdge/horde
 /**
  * Cache the list data.
  *
  * @return NULL
  */
 public function save()
 {
     $this->_cache->storeList($this->getListId(), serialize($this->_data));
 }