231
redis cluster (lemmy.nz)
top 11 comments
sorted by: hot top new old
[-] UnLocoPoco@lemmy.world 2 points 1 hour ago

Seems like cache hit ratio is good

[-] FishFace@piefed.social 8 points 3 hours ago

We pronouncing "redis" like "radish" now?

image

[-] Dicska@lemmy.world 2 points 1 hour ago

If 'redis' was an actual word in my language, it would be pronounced almost exactly like 'radish'.

[-] FishFace@piefed.social 2 points 1 hour ago

If you either pronounce e and a the same, or s and sh the same, it's a fine pun. But with both being different in English, it's bad IMO

[-] SkaveRat@discuss.tchncs.de 3 points 2 hours ago

Looks like it's executed by the root user

Not recommended

[-] chuckleslord@lemmy.world 0 points 1 hour ago
[-] Gonzako@lemmy.world 1 points 2 hours ago

Do people have uses for redis? What does it do better than just the standard DB queue?

[-] marcos@lemmy.world 1 points 5 minutes ago

What does it do better than just the standard DB queue?

It makes a queue without loading the DB.

ACID DBs don't scale indefinitely, and it's a very easy win if you are having performance issues even before scaling them.

[-] expr@programming.dev 5 points 1 hour ago

I'm not sure what you mean by "standard DB queue" (perhaps you mean a message queue, I guess?), but yeah Redis (or really, Valkey, now, since Redis tried to change license on everyone) is a very important tool in the toolbox for system design. In-memory databases trade persistence guarantees for raw throughput, and are very well-suited for different workloads than a traditional database is. It's great for caching, rate-limiting, realtime analytics, leaderboards... Basically anything with ephemeral data or data that can easily be reconstructed from some other source of truth. It's an optimization tool that can significantly reduce the load on your primary application database for certain workloads (and achieve higher throughput).

[-] Tja@programming.dev 8 points 5 hours ago

Is it caching data from MangoDB?

[-] egrets@lemmy.world 3 points 5 hours ago

To scale horizontally, they're using the chard pattern.

this post was submitted on 23 Sep 2026
231 points (98.7% liked)

Programmer Humor

33314 readers
666 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 3 years ago
MODERATORS