From 901938b0fe24045963334120b11dc348a9a92754 Mon Sep 17 00:00:00 2001 From: Ken Hibino Date: Mon, 11 Apr 2022 17:07:24 -0700 Subject: [PATCH] Update readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8da1cbd..d6ec29a 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ Task queues are used as a mechanism to distribute work across multiple machines. - Low latency to add a task since writes are fast in Redis - De-duplication of tasks using [unique option](https://github.com/hibiken/asynq/wiki/Unique-Tasks) - Allow [timeout and deadline per task](https://github.com/hibiken/asynq/wiki/Task-Timeout-and-Cancelation) +- Allow [aggregating group of tasks](https://github.com/hibiken/asynq/wiki/Task-aggregation) to batch multiple successive operations - [Flexible handler interface with support for middlewares](https://github.com/hibiken/asynq/wiki/Handler-Deep-Dive) - [Ability to pause queue](/tools/asynq/README.md#pause) to stop processing tasks from the queue - [Periodic Tasks](https://github.com/hibiken/asynq/wiki/Periodic-Tasks)