Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xfstart07/litetq

单机轻量的任务队列
https://github.com/xfstart07/litetq

Last synced: 2 days ago
JSON representation

单机轻量的任务队列

Awesome Lists containing this project

README

        

# 单机轻量的任务队列

可以将任务放在 kv 存储,内存等存储方式的任务队列。

设计图:

![](./images/design.png)

## 内存版

内存版本,任务消息存储在内存中。不能进行持久化。

* [x] - 内存队列
* [x] - 添加[goroutine池](pool/pool.go)

## 功能列表

* [ ] 支持 leveldb 存储
* [ ] 支持 bbolt 存储
* [x] 任务重试
* [ ] 支持 HTTP,GRPC 方式提交任务

## 场景描述

TODO