예제 #1
0
파일: HashType.php 프로젝트: ig-hit/redis
 /**
  * @param $key
  * @param int $by
  * @param null $fieldName
  * @return float
  */
 public function increment($key, $by = 1, $fieldName = null)
 {
     return $this->client->hIncrByFloat($key, $fieldName, $by);
 }