我有兴趣在我的网络应用程序中创建几个不同的基于redis的计数器。很多这些东西基本上都是针对指标等,但这没有什么区别。我的问题基本上如下,是否有可能避免这样做:
if $redis.get(key) != null
// increment key
else
// create key with a counter of 1
理想情况下,这样的事情会更加优化
$redis.incr(key, 1) // increment key by 1, and if it does not exist, start it at the value 1
我是否忽略了redis文档?目前有办法做到这一点吗?
答案 0 :(得分:5)