From 3002c178ad605fe4ef67fc9943d3c2b62b4f4d36 Mon Sep 17 00:00:00 2001 From: xiaofanku Date: Fri, 25 Sep 2020 17:19:19 +0800 Subject: [PATCH] update README.md. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 725f096c..8056212b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ jforum2是基于jdk 11+ 开发的jforum. jforum的核心实体和业务接口将 ![输入图片说明](https://images.gitee.com/uploads/images/2020/0512/095151_2706b720_351732.jpeg "在这里输入图片标题") #### :tada: 事件分发 -master 主分支使用RedisQ 来替换jforum使用的Spring内置的ApplicationEvent事件分发。RedisQ是一个gitHub上一个开源项目,基于Redis来实现发布/订阅模式. 但她并没有使用Redis内置的Pub/Sub 功能. 项目中作了以下说明: + +master 主分支使用RedisQ 来替换jforum使用的Spring内置的ApplicationEvent事件分发。[RedisQ](https://github.com/davidmarquis/redisq)是gitHub上一个开源项目, 基于Redis来实现发布/订阅模式. 但她并没有使用Redis内置的Pub/Sub 功能. 项目中作了以下说明: > What Redis offers with Pub/Sub is a listener model, where each subscriber receives each messages when it is listening, but won't receive them when not connected. We want every consumer to eventually receive all messages, independently of their online or offline status. -- GitLab