Merge pull request #58 from linhaojun857/dev

merge dev
master
linhaojun857 3 years ago committed by GitHub
commit 0dcc596297
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,7 +3,6 @@
## 前言
- 开源不易希望大家star支持一下
- 如有bug欢迎提issue或者pr
## 在线地址

@ -14,7 +14,13 @@ export default new Vuex.Store({
articleList: 1,
category: 1,
tag: 1,
comment: 1
comment: 1,
talkList: 1,
user: 1,
online: 1,
role: 1,
quartz: 1,
friendLinks: 1
}
},
mutations: {
@ -64,6 +70,24 @@ export default new Vuex.Store({
},
updateCommentPageState(state, current) {
state.pageState.comment = current
},
updateTalkListPageState(state, current) {
state.pageState.talkList = current
},
updateUserPageState(state, current) {
state.pageState.user = current
},
updateOnlinePageState(state, current) {
state.pageState.online = current
},
updateRolePageState(state, current) {
state.pageState.role = current
},
updateQuartzPageState(state, current) {
state.pageState.quartz = current
},
updateFriendLinkPageState(state, current) {
state.pageState.current = current
}
},
actions: {},

@ -114,8 +114,8 @@ CREATE TABLE `t_job` (
`invoke_target` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '调用目标字符串',
`cron_expression` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT 'cron执行表达式',
`misfire_policy` tinyint(1) NULL DEFAULT 3 COMMENT '计划执行错误策略1立即执行 2执行一次 3放弃执行',
`concurrent` tinyint(1) NULL DEFAULT 1 COMMENT '是否并发执行0允许 1禁止)',
`status` tinyint(1) NULL DEFAULT 0 COMMENT '状态0正常 1暂停)',
`concurrent` tinyint(1) NULL DEFAULT 1 COMMENT '是否并发执行0禁止 1允许',
`status` tinyint(1) NULL DEFAULT 0 COMMENT '状态0暂停 1正常',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NULL DEFAULT NULL COMMENT '更新时间',
`remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注信息',

@ -1,5 +1,7 @@
## 1.服务器要求
> 下面的建议不包含minio的内存占用如需使用minio请另外考虑
1. 核心数和内存大小有两种方案:
- 2核4G使用ES搜索策略
- 2核2G使用MySQL搜素策略

Loading…
Cancel
Save