Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
variable tokenBucketRemainingTokensScript
import { tokenBucketRemainingTokensScript } from "https://deno.land/x/upstash_ratelimit@v1.1.0-canary-1/src/lua-scripts/single.ts";

type

` local key = KEYS[1] local maxTokens = tonumber(ARGV[1]) local bucket = redis.call("HMGET", key, "tokens") if bucket[1] == false then return maxTokens end return tonumber(bucket[1]) `