A minimal message queue that just works
Simple, fast, in-memory message queue for development and testing
docker run -p 1337:1337 ghcr.io/skyaktech/tlq
⚡
In-Memory & Fast
Zero persistence overhead. Perfect for development and testing.
🎯
Simple API
Just add and get messages. No complex configurations or setup.
🔧
Zero Dependencies
Lightweight, standalone binary. Works everywhere with minimal footprint.
Quick Start
🐳 Docker
docker run -p 1337:1337 ghcr.io/skyaktech/tlq
📦 Cargo
Try it out:
# Add a message
curl -X POST localhost:1337/add \
-H "Content-Type: application/json" \
-d '{"body":"Hello TLQ!"}'
# Get messages
curl -X POST localhost:1337/get \
-H "Content-Type: application/json" \
-d '{"count":1}'