示例#1
0
 /**
  * {@inheritdoc}
  */
 protected function doDelete($id)
 {
     return $this->store->forget($id);
 }
示例#2
0
 /**
  * Remove an item from the cache.
  *
  * @param string $key
  * @return void
  * @static
  */
 public static function forget($key)
 {
     \Illuminate\Cache\RedisStore::forget($key);
 }