Message queue and async workload system
Tailon is a lightweight JSON message queue API with simple queue creation, writes, reads, and queue stats.
Key features
Use Tailon when you need a straightforward HTTP queue for JSON messages.
Named queues
Create queues by name and inspect their current length, reads, and writes.
JSON writes
Write JSON payloads directly to a queue through the :write endpoint.
Blocking reads
Read messages from the :read endpoint as newline-delimited JSON.
Quick start
Get started with Tailon in seconds using the API.
1curl -X POST https://queues.hola.cloud/v1/queues \
2 -d '{"name":"orders"}' \
3 && curl -X POST https://queues.hola.cloud/v1/queues/orders:write \
4 -d '{"message":"order-12345"}'
Common use cases
Microservices orchestration
Build and deploy with Tailon on HolaCloud's enterprise platform, designed for security, reliability, and scale.
Data pipeline automation
Build and deploy with Tailon on HolaCloud's enterprise platform, designed for security, reliability, and scale.
Event-driven architectures
Build and deploy with Tailon on HolaCloud's enterprise platform, designed for security, reliability, and scale.
API backend development
Build and deploy with Tailon on HolaCloud's enterprise platform, designed for security, reliability, and scale.
Ready to get started?
Explore the documentation or launch the console to start building with Tailon.
Comments