From 36232680bee46d0a9473d66d64c59aae233ac648 Mon Sep 17 00:00:00 2001 From: Jakub Miazek Date: Thu, 17 Oct 2024 19:58:17 +0200 Subject: [PATCH] add valkey example as redis alternative --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cbd43e2..46bd479 100644 --- a/README.md +++ b/README.md @@ -166,6 +166,7 @@ I've included a few of my favorites to kick things off! * [Connection pool for asyncpg](https://magicstack.github.io/asyncpg/current/usage.html#connection-pools) * [Granian - A Rust HTTP server for Python applications](https://github.com/emmett-framework/granian) * [APScheduler - In-process task scheduler with Cron-like capabilities](https://apscheduler.readthedocs.io/en/master/) +* [Valkey - A simple and fast key-value store](https://github.com/valkey-io/valkey)

(back to top)