Oğuzhan Olguncu
Oğuzhan Olguncu
Looks good, and let's add a reset button to next.js example
I believe that as long as the commands remains in Lua script, it should be acceptable. We don't want to cause more round-trips than necessary.
``` const ratelimit = new Ratelimit({ redis: kv, limiter: {getRemaining: _,limit: _}, }); ``` Why do we expose `getRemaining` and `limit` to outside when they can't even initialize it that...
APIs are definitely much better. I like it
Check this out https://github.com/hiett/serverless-redis-http.
Hey, it's indeed a weird issue. This works: ``` type Receipt = { time: string; user: string; hash: string; }; const redis = new Redis() redis.hgetall("test-test"); //OR interface Receipt {...
Weird TS quirk I suppose 😂
Hey, we can't simply remove a feature from the SDK; we always have to consider backward compatibility. Also, since that feature isn't really requested and I don't see the benefits...
Initially, we wanted to introduce command-level abort, but it seemed like a lot of work. We opted for client-level abort because client instantiation is cheap. However, if we were to...
To be honest both options are great addition. So, I'll take a look at this and let you know soon.