Redis + Lua Java實現限流

limit.lua文件內容以下: local key = KEYS[1] --限流KEY(一秒一個) local limit = tonumber(ARGV[1]) --限流大小 local current = tonumber(redis.call('get', key) or "0") if current + 1 > limit then --若是超出限流大小 return 0 el
相關文章
相關標籤/搜索