README update

This commit is contained in:
Adriano Caloiaro 2023-09-09 17:13:23 +02:00
parent 41b39d5177
commit 18b811fb93
No known key found for this signature in database
GPG key ID: 920633857147D83D

View file

@ -10,7 +10,7 @@ Background job processing for Go
# About
Neoq is a queue-agnostic background job framework for Go.
Neoq is a queue-agnostic background job framework for Go, with a pleasant API and powerful features.
Queue-agnostic means that whether you're using an in-memory queue for developing and testing, or Postgres or Redis queue in production -- your job processing code doesn't change. Job handlers are agnostic to the queue providing jobs. It also means that you can mix queue types within a single application. If you have ephemeral or periodic tasks, you may want to process them in an in-memory queue, and use Postgres or Redis queues for jobs requiring queue durability.