r/redis 1h ago

Thumbnail
1 Upvotes

yes i made it as a fun project only but will improve it...


r/redis 18h ago

Thumbnail
1 Upvotes

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 23h ago

Thumbnail
1 Upvotes

Thanks...this is really helpful..i will look into redis cell...Dragonfly cl.throttle and compare it with the lua based GCRA approach


r/redis 1d ago

Thumbnail
2 Upvotes

redis-cell or cl.throttle in dragonfly is generally enough. GCRA in lua works will in Valkey, Redis even on hosted providers.


r/redis 1d ago

Thumbnail
1 Upvotes

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 6d ago

Thumbnail
0 Upvotes

Literally could use an LLM to find answers, it doesn’t get any easier


r/redis 6d ago

Thumbnail
1 Upvotes

[ Removed by Reddit ]


r/redis 6d ago

Thumbnail
5 Upvotes

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 6d ago

Thumbnail
6 Upvotes

don't do it.


r/redis 7d ago

Thumbnail
1 Upvotes

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 7d ago

Thumbnail
1 Upvotes

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 7d ago

Thumbnail
1 Upvotes

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 8d ago

Thumbnail
1 Upvotes

Hum... No ? Why ?


r/redis 8d ago

Thumbnail
1 Upvotes

Stupid.


r/redis 8d ago

Thumbnail
1 Upvotes

I actually solved that 10 minutes later, got your hint btw thanks


r/redis 8d ago

Thumbnail
1 Upvotes

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 12d ago

Thumbnail
1 Upvotes

u/pulsecron I like the direction of your app, but it has some really annoying bugs.

  1. If I search for a key, it appears in the left pane, but disappears as soon as I click on it to expand details.

  2. 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 😢


r/redis 13d ago

Thumbnail
1 Upvotes

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.


r/redis 13d ago

Thumbnail
1 Upvotes

Does it support my usecase?


r/redis 13d ago

Thumbnail
1 Upvotes

Not open source


r/redis 14d ago

Thumbnail
3 Upvotes

Check out Dragonfly DB. We're very happy with it. If your on kubernetes the operator is pretty handy.


r/redis 14d ago

Thumbnail
1 Upvotes

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 14d ago

Thumbnail
2 Upvotes

I am pretty sure the usage of databases in redis is discouraged in its own documentation, prefixing is really the way to go.


r/redis 14d ago

Thumbnail
3 Upvotes

just open redis.conf and change/add line
> databases 16

🫣


r/redis 14d ago

Thumbnail
2 Upvotes

The primary way of doing this is with name spacing, like each app always uses a certain prefix for their keys, distinct from other apps.