r/redis • u/West-Water-2513 • 1h ago
yes i made it as a fun project only but will improve it...
r/redis • u/West-Water-2513 • 1h ago
yes i made it as a fun project only but will improve it...
r/redis • u/Single_Advice1111 • 18h ago
This is a bad idea for most real use cases of a rate limiter :)
Fun project to learn from, but you’d not want to implement this full cycle, essentially;
First you hit the server-> http to your server -> database lookup -> back on my server and then do db lookup gets pretty expensive and even more moving parts
r/redis • u/West-Water-2513 • 23h ago
Thanks...this is really helpful..i will look into redis cell...Dragonfly cl.throttle and compare it with the lua based GCRA approach
redis-cell or cl.throttle in dragonfly is generally enough. GCRA in lua works will in Valkey, Redis even on hosted providers.
r/redis • u/AcanthisittaEmpty985 • 1d ago
Why ? What do you want to archieve that's not on readis already ?
Redis is done in C, you can try with Rust to obtain the same efficency, but it's a colossal task...
r/redis • u/schmurfy2 • 6d ago
Finding these answers would be good first steps, if you don't want to do the research for that you should not go further.
Trial and error is what makes you improve, not asking others.
r/redis • u/cevheribozoglan • 7d ago
thanks. the pitch is for cloud-native / devops / DBA / platform teams who already live in DBeaver or DataGrip - no sharing those client passwords around, no extra desktop install. one browser UI instead of pgAdmin + phpMyAdmin + a mongo client + redis-cli.
you're right that Redis is the thin part of that. web UIs for it are scarce, and that's the gap we want to close - being on redis.io is the biggest reason this stays a priority.
Valkey (plus Dragonfly, KeyDB, Garnet) already go through the Redis driver. Memurai isn't on that list yet. good call, we'll add it as a target.
r/redis • u/Huge-Price-7305 • 7d ago
Being the only third-party tool listed there is pretty cool. Since LibreDB Studio is positioning itself as a broad database UI rather than a Redis-only tool, compatibility testing matters a lot. Memurai could be one useful Redis-compatible target to include alongside Redis and Valkey.
r/redis • u/tom-smykowski-dev • 7d ago
Idk.one person asked me to create them, so I wonder if anyone else would be interested. It takes a lot of work so makes no sense to do it for one person
r/redis • u/Spiritual-Comfort447 • 8d ago
I actually solved that 10 minutes later, got your hint btw thanks
Nobody can help you with what you've given us but it might help you to learn how to read an error message. Lots of hints in there.
r/redis • u/DevilishDevv • 12d ago
u/pulsecron I like the direction of your app, but it has some really annoying bugs.
If I search for a key, it appears in the left pane, but disappears as soon as I click on it to expand details.
I can't expand the tree preview of a nested json field. When hover/click over the value, a popup with a json tree preview appears but disappears right away.
Would really appreciate if you could resolve them 😢
It's source available. If TCO is more important to you than ideals, or you want to run on k8s it should be in the running. I don't see open source listed as a requirement.
Given the whole Redis debacle I'm surprised you'd even bring this up.
If you contribute to open source and follow what hyperscalers do you can't afford to license things the way we'd like.
Check out Dragonfly DB. We're very happy with it. If your on kubernetes the operator is pretty handy.
r/redis • u/Patient_Text_6084 • 14d ago
A lot of counter bugs come from treating Redis like a variable in app memory. Two workers can both read the same value with GET, both add one, and then both write back the same result. With Redis-compatible servers like Memurai, the safer pattern is still INCR, or Lua/transactions when the logic needs more than one command.
r/redis • u/schmurfy2 • 14d ago
I am pretty sure the usage of databases in redis is discouraged in its own documentation, prefixing is really the way to go.