コード例 #1
0
 /**
  * @param $key string
  * @param $value int
  * @return Mixed
  */
 public function decr($key, $value = 1)
 {
     return $this->client->decr($this->encodeKey($key), $value);
 }