I'm doing research on use-cases of #Redis® or #valkey. And how developers are using those in their applications. Boost for more reach would be very nice.

#php #research

cache
53.5%
persistent storage
6.9%
queue
32.7%
other please 🧵👇
6.9%
Poll ended at .

@jaapio Apart from Session storage (as @mwop already wrote) it's also an awesome Projection Storage. To me, that's somewhere in the middle between cache and persistent storage: It's not a cache, as the code in question doesn't have a fallback to "fix" a miss. But it's also not persistent because in-memory.

I've been suggesting that as a lightning fast means to serve html content since like forever ;) #php

@theseer are you using it with persistent settings? Redis can write to disk as well, which has a small performance penalty
@jaapio I usually do not. But I know people who opted for that. I usually do no see the point because I have replica in case one goes down.