Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mugli committed Feb 17, 2019
1 parent f055bad commit a911923
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Reliable and modern [Redis-streams](https://redis.io/topics/streams-intro) based

- [x] Orkid let Redis do the heavy lifting with [redis streams](https://redis.io/topics/streams-intro).
- [x] Uses [`luin/ioredis`](https://github.com/luin/ioredis) for connection, so supports redis single instance, redis cluster, redis sentinel.
- [x] **Adjustable concurrency** per consumer instance. See example code. [See example code](https://github.com/mugli/orkid-node/tree/master/examples/basic).
- [x] **Adjustable concurrency** per consumer instance for scaling task processing. See example code. [See example code](https://github.com/mugli/orkid-node/tree/master/examples/basic).
- [x] Job **timeouts** and **retries**. All configurable per consumer. [See example code](https://github.com/mugli/orkid-node/tree/master/examples/failure-timeout-retry).
- [x] Task **Deduplication**. If a task is already waiting in the queue, it can be configured to avoid queueing the same task again. _(Useful for operations like posting database record updates to elasticsearch for re-indexing. Deduplication is a common pattern here to avoid unnecessary updates)_. [See example code](https://github.com/mugli/orkid-node/tree/master/examples/deduplication).
- [ ] Monitoring and management **UI** for better visibility.
Expand Down Expand Up @@ -155,6 +155,13 @@ consumer.start();

<p></p>

<details>
<summary>What is the order of job/task/delivery?</summary>
[TODO: ]
</details>

<p></p>

<details>
<summary>How do I ensure durability/persistence in Redis?</summary>
[TODO: ]
Expand Down

0 comments on commit a911923

Please sign in to comment.