Skip to content

Commit ce3cde3

Browse files
committed
update:readme and docment adn changelog
1 parent 7a8b04f commit ce3cde3

File tree

5 files changed

+71
-18
lines changed

5 files changed

+71
-18
lines changed

CHANGELOG

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
XEngine_MQService V3.7.0.1001
2+
3+
添加:定时发布是否跳过本身功能
4+
添加:数据库配置配置文件
5+
优化:编译脚本
6+
更新:匹配支持XEngine V8.x版本
7+
更新:打印的版本信息
8+
更新:mysql数据库字符集现在使用utf8mb4 和 unicode
9+
修改:mysql字符集现在使用UTF8连接
10+
修改:在登录后,可以通过HTTP GET方法获取数据了
11+
修改:现在可以设置清理和不清理定时发布的任务了
12+
修改:数据库的data数据类型修改为二进制类型,现在支持保存二进制了
13+
删除:数据库的msglen字段,不需要
14+
15+
added:whether break self for time release
16+
added:db configure for configure module
17+
improved:makefile
18+
update:match xengine v8.x
19+
update:version printf log
20+
update:mysql charset to utf8mb4 and unicode
21+
modify:mysql charset to utf8 now
22+
modify:after login in,get message through get method of http
23+
modify:can be clear or not clear for time release
24+
modify:data to blob type for database,support binary data now
25+
delete:nMsgLen field of database
26+
======================================================================================
127
XEngine_MQService V3.6.0.1001
228

329
增加:主题所有者数据支持

README.en.md

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@ this software support following features
3030
14. Unlimited load message types
3131
15. timed message
3232
16. Access control(planning)
33+
17. binary message(only tcp)
3334

3435
## install
3536

3637
#### XEngine Evn
37-
you must install XEngine,need V7.46 or above,install XEngine can be refer to xengine Readme docment
38+
you must install XEngine,need V8.10 or above,install XEngine can be refer to xengine Readme docment
3839
GITEE:https://gitee.com/xyry/libxengine
3940
GITHUB:https://github.com/libxengine/xengine
4041

@@ -44,26 +45,35 @@ window Exection XEngine_WINEnv.bat
4445
Linux Exection:sudo ./XEngine_LINEnv.sh -i 3
4546
Macos Exection:./XEngine_LINEnv.sh -i 3
4647

47-
##### dependent environment
48-
need to mysql service support,exection XEngine_SQLFile/CreateDatabase.sql to create database
49-
and exection:XEngine_SQLFile/XEngine_MQData.sql and XEngine_SQLFile/XEngine_MQUser.sql to create table
50-
5148
#### Windows
5249
use vs open and complie,support windows 7sp1 and above
5350
Just Run it.
5451

5552
#### Linux
5653
Linux use Makefile to complie
57-
supproted ubuntu x64 or centos x64
58-
59-
#### MacOS
60-
Linux use Makefile to complie,terminal exection,Requires mac 12 and above
54+
supproted ubuntu22.04 x64 or RockyLinux9 x64
6155

62-
##### complie
56+
###### complie
6357
execute command in XEngine_Source path
6458
make complie
6559
make FLAGS=InstallAll install
6660
make FLAGS=CleanAll clear
61+
If there is no error.you can see complied XEngine_MQServiceApp file in XEngine_Release
62+
You can running at terminal.
63+
64+
#### MacOS
65+
Linux use Makefile to complie,terminal exection,Requires mac 13 and above
66+
###### complie
67+
same linux
68+
69+
## Installation Instructions
70+
#### Install
71+
Modify the configuration file to what you need, and then run the service directly
72+
need to mysql service support,create database through CreateDatabase.sql,import XEngine_SQLFile/XEngine_MQData.sql and XEngine_SQLFile/XEngine_MQUser.sql to create table.
73+
74+
#### upgrade
75+
If it is an upgrade installation, after downloading the new version and modifying the configuration file, it can be run directly
76+
database you need to open the database matching fields and tables are consistent
6777

6878
#### use
6979

README.md

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ c c++Message Service
2929
14. 不限制负载的消息类型
3030
15. 定时消息
3131
16. 权限控制(planning)
32+
17. 二进制消息(only tcp)
3233

3334
## 安装教程
3435

3536
#### XEngine环境
36-
必须安装XEngine,版本需要V7.46或者以上版本,安装XEngine可以参考其Readme文档
37+
必须安装XEngine,版本需要V8.10或者以上版本,安装XEngine可以参考其Readme文档
3738
GITEE:https://gitee.com/xyry/libxengine
3839
GITHUB:https://github.com/libxengine/xengine
3940

@@ -45,26 +46,40 @@ macos执行:./XEngine_LINEnv.sh -i 3
4546

4647
##### 依赖环境
4748
需要MYSQL服务的支持,执行XEngine_SQLFile/CreateDatabase.sql 创建数据库
48-
分别执行:执行XEngine_SQLFile/XEngine_MQData.sql 和 执行XEngine_SQLFile/XEngine_MQUser.sql 创建库
49+
分别执行:执行XEngine_SQLFile/XEngine_MQData.sql 和 执行XEngine_SQLFile/XEngine_MQUser.sql 创建表
4950

5051
#### Windows
5152
使用VS打开并且编译,支持WINDOWS 7SP1以上系统
5253
直接运行即可
5354

5455
#### Linux
5556
Linux使用Makefile编译
56-
UBUNTU20.04 x64或者CENTOS8 x64均可
57+
UBUNTU22.04 x64或者RockyLinux9 x64均可
5758
在控制台运行
5859

59-
#### MacOS
60-
使用makefile编译,控制台运行,需要mac 12以及以上版本
61-
在控制台运行
62-
63-
##### 编译命令
60+
###### 编译命令
6461
在XEngine_Source目录下执行命令
6562
make 编译
6663
make FLAGS=InstallAll 安装库程序
6764
make FLAGS=CleanAll 清理编译
65+
如果没有错误,你可以在XEngine_Release目录下看到编译的XEngine_MQServiceApp
66+
然后直接在终端运行它即可.
67+
68+
#### MacOS
69+
使用makefile编译,控制台运行,需要mac 13以及以上版本
70+
在控制台运行
71+
72+
###### 编译命令
73+
同LINUX
74+
75+
## 安装指导
76+
#### 安装
77+
修改配置文件为你需要的,然后直接运行服务即可
78+
需要MYSQL服务,使用CreateDatabase.sql创建数据库,然后导入执行XEngine_SQLFile/XEngine_MQData.sql 和 执行XEngine_SQLFile/XEngine_MQUser.sql 创建表
79+
80+
#### 升级
81+
如果是升级安装,下载新版本后修改配置文件就可以直接运行了
82+
数据库需要打开数据库匹配字段和表是否一致
6883

6984
#### 使用说明
7085

@@ -113,6 +128,8 @@ MQTT支持
113128
完善HTTP_CALL
114129
允许主题解除绑定
115130
允许删除主题
131+
高性能内存队列
132+
多次登录验证
116133

117134
## 提交问题
118135

XEngine_Docment/Docment_en.docx

59 Bytes
Binary file not shown.

XEngine_Docment/Docment_zh.docx

976 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)