I created a new Concept Project utilizing Redis Streams to create an Activity Feed
Tag: Redis
Redis is an open-source, in-memory data structure store that can be used as a database, cache, and message broker. It supports various data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs, geospatial indexes with radius queries, and streams. Redis has built-in replication, Lua scripting, LRU eviction, transactions, and different levels of on-disk persistence, and provides high availability via Redis Sentinel and automatic partitioning with Redis Cluster.
Learn more about Redis.
Articles
-
Redis Stream Activity Feed -
Ping Redis without CURL or NC I found this little snippet on Stack Overflow which allowed me to check the Redis connection from inside my container.
-
High Availability Redis Session with Express Recently we have needed update our session solution with Redis to use Redis as a cluster, increasing the availability of our sites in the event that we have to cycle our Redis servers.