Skip to content

Commit 968015b

Browse files
committed
update:readme and configure file and sql file
1 parent 15f7fee commit 968015b

File tree

5 files changed

+42
-26
lines changed

5 files changed

+42
-26
lines changed

XEngine_Docment/Docment_en.docx

92.4 KB
Binary file not shown.

XEngine_Docment/Docment_zh.docx

92.7 KB
Binary file not shown.

XEngine_Release/XEngine_Config/XEngine_Config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@
3838
"XStorage":{
3939
"bResumable":1,
4040
"bUPHash":0,
41-
"nHashMode":2,
42-
"tszFileDir":"./XEngine_File"
41+
"nHashMode":2
4342
},
4443
"XProxy":{
4544
"XProxyAuth":{
@@ -76,7 +75,8 @@
7675
},
7776
"XVer":{
7877
"StorageVersion":[
79-
"3.2.0.1001 Build20211210",
78+
"3.3.0.1001 Build20220106",
79+
"3.2.0.1001 Build20211211",
8080
"3.1.0.1001 Build20211109",
8181
"3.0.0.1001 Build20211029",
8282
"2.5.0.1001 Build20210930",
Lines changed: 32 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,36 @@
11
{
2-
"tszIPAddr": "127.0.0.1",
3-
"bDistributed": 1,
4-
"LBConfig": {
5-
"nServerMode": 1
2+
"bDistributed":1,
3+
"LBConfig":{
4+
"nServerMode":1
65
},
7-
"LoadBalance": {
8-
"nUseMode": [
9-
0
10-
],
11-
"CenterAddr": [
12-
"http://192.168.1.9:5100"
13-
],
14-
"DownloadAddr": [
15-
"http://192.168.1.9:5010"
16-
],
17-
"UPLoaderAddr": [
18-
"http://192.168.1.9:5102"
19-
]
6+
"LoadBalance":{
7+
"nUseMode":[
8+
0
9+
],
10+
"CenterAddr":[
11+
"http://192.168.1.9:5100"
12+
],
13+
"DownloadAddr":[
14+
"http://192.168.1.9:5010"
15+
],
16+
"UPLoaderAddr":[
17+
"http://192.168.1.9:5102"
18+
],
19+
"StorageAddr":[
20+
{
21+
"bEnable":1,
22+
"nLevel":1,
23+
"Size":"1024MB",
24+
"XEngine_Key":"storagekey1",
25+
"XEngine_Path":"./XEngine_File"
26+
},
27+
{
28+
"bEnable":1,
29+
"nLevel":1,
30+
"Size":"1024MB",
31+
"XEngine_Key":"storagekey2",
32+
"XEngine_Path":"./XEngine_File2"
33+
}
34+
]
2035
}
2136
}
Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/*
22
Navicat Premium Data Transfer
33
4-
Source Server : 192.168.1.9
4+
Source Server : 192.168.1.12
55
Source Server Type : MySQL
6-
Source Server Version : 80025
7-
Source Host : 192.168.1.9:3306
6+
Source Server Version : 80027
7+
Source Host : 192.168.1.12:3306
88
Source Schema : XEngine_Storage
99
1010
Target Server Type : MySQL
11-
Target Server Version : 80025
11+
Target Server Version : 80027
1212
File Encoding : 65001
1313
14-
Date: 17/06/2021 17:19:07
14+
Date: 06/01/2022 10:45:33
1515
*/
1616

1717
SET NAMES utf8mb4;
@@ -23,13 +23,14 @@ SET FOREIGN_KEY_CHECKS = 0;
2323
DROP TABLE IF EXISTS `XStorage_File`;
2424
CREATE TABLE `XStorage_File` (
2525
`ID` int NOT NULL AUTO_INCREMENT COMMENT 'ID序号',
26+
`BuckKey` varchar(260) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '路径KEY',
2627
`FilePath` varchar(260) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '文件路径',
2728
`FileName` varchar(260) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '文件名称',
2829
`FileHash` varchar(260) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件HASH',
2930
`FileUser` varchar(260) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件所属用户',
3031
`FileSize` bigint NOT NULL COMMENT '文件大小',
3132
`FileTime` datetime NOT NULL COMMENT '插入时间',
3233
PRIMARY KEY (`ID`) USING BTREE
33-
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
34+
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
3435

3536
SET FOREIGN_KEY_CHECKS = 1;

0 commit comments

Comments
 (0)