예제 #1
0
 /**
  * Begin executing a new tags operation.
  *
  * @param array|mixed $names
  * @return \Illuminate\Cache\RedisTaggedCache 
  * @static 
  */
 public static function tags($names)
 {
     return \Illuminate\Cache\RedisStore::tags($names);
 }
예제 #2
0
 /**
  * @param $tags
  *
  * @return void
  */
 public function flush($tags)
 {
     return $this->cache->tags($tags)->flush();
 }