redis hset 返回值作为判断标准
作者:高景洋 日期:2021-11-24 11:02:38 浏览次数:1893
redis hset 返回值
1、如果字段是哈希表中的一个新建字段,并且值设置成功,返回 1 。
2、如果哈希表中域字段已经存在且旧值已被新值覆盖,返回 0 。
注意:
我们在代码中经常会用以下逻辑来判断redis 是否推送成功:
result = redis.hset(redis_key,k,v)
print('hash result : {}'.format(result))
if result==1:
print('key:{} , hash key:{} 新增成功'.format(redis_key,k))
else:
print('key:{} , hash key:{} 推送失败'.format(redis_key,k))
经过对hset 返回值的了解,我们可以看出,上边的逻辑是不严谨的。
因为新增会返回1,如果 hash 中的key 已存在,并进行了覆盖操作,结果会返回0
本文永久性链接:
<a href="http://r4.com.cn/art210.aspx">redis hset 返回值作为判断标准</a>
<a href="http://r4.com.cn/art210.aspx">redis hset 返回值作为判断标准</a>
当前header:Host: r4.com.cn
X-Host1: r4.com.cn
X-Host2: r4.com.cn
X-Host3: 127.0.0.1:8080
X-Forwarded-For: 44.220.184.63
X-Real-Ip: 44.220.184.63
X-Domain: r4.com.cn
X-Request: GET /art210.aspx HTTP/1.1
X-Request-Uri: /art210.aspx
Connection: close
User-Agent: CCBot/2.0 (https://commoncrawl.org/faq/)
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
If-Modified-Since: Sun, 26 May 2024 09:34:29 GMT
Accept-Encoding: br,gzip