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.
Пример #1
0
 /**
  * Cache the list data.
  *
  * @return NULL
  */
 public function save()
 {
     $this->_cache->storeList($this->getListId(), serialize($this->_data));
 }