Metadata-Version: 2.1
Name: simqcore
Version: 0.1.0
Summary: 基于redis的消息队列。
Author: Chen Han
Maintainer: Chen Han
License: Apache License, Version 2.0
Keywords: simq,simqcore
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
License-File: LICENSE

# simqcore

基于redis的消息队列。

## 特性

- 支持消息的队尾插入（FIFO），也可视为普通消息。
- 支持消息的队首插入（FILO），也可视为高优先级消息。
- 支持消息的消费确认。
- 支持超时未确认消息的自动回收。
- 支持消息超时策略的设定。
- 支持多通道。
- 支持未执行消息的取消。
- 支持执行器在获取消息后主动释放消息。
- 消息体使用yaml进行序列化，支持datetime、bytes等类型数值。

## 安装

```shell
pip install simqcore
```

## 版本

### 0.1.0

- 版本首发。

