コード例 #1
0
 /**
  * Decrement the value of an item in the cache.
  *
  * @param string $key
  * @param mixed $value
  * @return int|bool 
  * @static 
  */
 public static function decrement($key, $value = 1)
 {
     return \Illuminate\Cache\MemcachedStore::decrement($key, $value);
 }