Email or username:

Password:

Forgot your password?
Renaud Chaput

I started playing with DragonflyDB to replace Redis as the app data storage for a Mastodon instance. Redis used 22 GB of memory, DragonflyDB uses 8.5 GB.

That's very impressive, probably in part because Mastodon uses a lot of sorted sets (for timelines) and Dragonfly stores those in a much more efficient data structure, resulting in a lot less overhead (see dragonflydb.io/blog/dragonfly-).
Additional bonus: they provide a K8s operator, with built-in HA

3 comments
dansup

@renchap Wow, that's really impressive! Def need to look into that, we use sorted sets a lot too :)

Dustin Rue

@renchap I appreciate the way dragonflydb provides HA using the operator. Works well enough

Go Up