예제 #1
0
 /**
  * Flush results stored in CacheStore and CachedResult.
  */
 public function flush()
 {
     $this->data = [];
     $this->count = 0;
     $this->store->delete($this->key);
     $this->key = null;
 }
예제 #2
0
 /**
  * {@inheritdoc}
  */
 public function destroy($session_id)
 {
     $this->cacheStore->delete($this->options['prefix'] . $session_id);
 }