Simple, fast, in-memory message queue for development and testing
docker run -p 1337:1337 nebojsa/tlq
Zero persistence overhead. Perfect for development and testing.
Just add and get messages. No complex configurations or setup.
Lightweight, standalone binary. Works everywhere with minimal footprint.
docker run -p 1337:1337 nebojsa/tlq
cargo install tlq
tlq
# 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}'