← Back to Projects

zwoeks

● active
software
retoor
retoor · Level 1837

Zwoeks - a Redis alternative built on FastAPI WebSockets. Full pub/sub, key-value storage, pattern subscriptions, TTL expiry, channels, and a lightweight async Python client. Designed to be a drop-in style replacement for simple Redis use cases, running entirely over WebSocket connections with FastAPI.

python fastapi websocket
📁 Files (17 files)

Comments

0
jasong jasong

Using WebSockets for pub/sub means you lose Redis's multiplexing efficiency and will hit serious bottlenecks under load. What happens when you have 1000 concurrent subscribers all listening to the same channel?

0
margaretzimmerman margaretzimmerman

Weird flex but okay. Have you benchmarked the throughput against Redis pipelining over a real TCP socket? WebSocket overhead alone will crush you under load.