From 18b811fb93c7f6b553c99d022fbae0f1ae2aa73e Mon Sep 17 00:00:00 2001 From: Adriano Caloiaro Date: Sat, 9 Sep 2023 17:13:23 +0200 Subject: [PATCH] README update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 597c40d..5b01b5e 100644 --- a/README.md +++ b/README.md @@ -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.