YiiRedis icon indicating copy to clipboard operation
YiiRedis copied to clipboard

ARedisHash bug

Open anonimizerme opened this issue 12 years ago • 0 comments

24 line if (!$this->getConnection()->getClient()->hset($this->name,$key, $value))

it don't corrent than hset return 1 if create new 0 if update exist and return false if error

correct code if (false === $this->getConnection()->getClient()->hset($this->name,$key, $value)) {

anonimizerme avatar Aug 27 '12 11:08 anonimizerme