
redis
一把青龙湾月刀
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
redisson-分布式限流
local rate = redis.call('hget', KEYS[1], 'rate');local interval = redis.call('hget', KEYS[1], 'interval');local type = redis.call('hget', KEYS[1], 'type');assert(rate ~= false and interval ~= false and type ~= false, 'RateLimiter is not initialize...原创 2021-08-07 23:31:06 · 829 阅读 · 0 评论 -
redis命令集合
String命令集APPEND key valuesummary: Append a value to a keysince: 2.0.0BITCOUNT key [start] [end]summary: Count set bits in a stringsince: 2.6.0BITOP operation destkey key [key …]summary: Perfor...原创 2019-11-26 15:06:47 · 166 阅读 · 0 评论