当mysql开启binlog日志时,会存在一个内部XA的问题:事务在存储引擎层redo log的写入和binlog的写入一致性问题。 mysql通过两阶段提交很好的解决了redo log和binlog一致性问题: 第一阶段:innodb prepare, 持有prepare_commit_mutex ...
分类:
数据库 时间:
2020-07-17 01:14:06
阅读次数:
148
在根目录下执行npm run build 后,会将项目文件生成到 dist 目录。 然后,你可以将dist目录部署到你喜欢的服务器托管商。 下面以GithubPage 举例: 新建 你的用户名.github.io 仓库 cd dist git init git add -A git commit - ...
分类:
其他好文 时间:
2020-07-16 22:06:30
阅读次数:
96
--语句新建一个定时任务 declare job number;BEGIN DBMS_JOB.SUBMIT( JOB => job, /*自动生成JOB_ID*/ WHAT => 'p_monitor_tablespace;', /*需要执行的存储过程名称或SQL语句*/ NEXT_DATE => ...
分类:
数据库 时间:
2020-07-16 21:24:07
阅读次数:
107
1. 执行 npm install , C:\Program Files\nodejs\MyBook>npm installnpm notice created a lockfile as package-lock.json. You should commit this file. npm WAR ...
分类:
Web程序 时间:
2020-07-16 12:27:14
阅读次数:
188
Git冲突:commit your changes or stash them before you can merge. 解决办法 http://www.aikaiyuan.com/8875.html 用git pull来更新代码的时候,遇到了下面的问题: 1 2 3 4 error: Your ...
分类:
其他好文 时间:
2020-07-16 11:59:47
阅读次数:
75
Task:知道commit号,如何checkout 指定版本 1. 切换到master: git checkout master 2. 下载最新代码: git pull 3. 下载head: git checkout HEAD 4. 查看log找到需要的版本: git log 5. 根据header ...
分类:
其他好文 时间:
2020-07-15 22:44:08
阅读次数:
88
记录了本人在科研中常用到的git操作,方便查询,内容并不全面,更多功能等用到的时候再加 基础操作: 初始化仓库 git init 克隆仓库 git clone <URL> 添加、提交全部修改 git add . git commit -m "message" 分支操作 显示当前branch git ...
分类:
其他好文 时间:
2020-07-15 16:05:47
阅读次数:
85
实例代码: actions: { // 获取用户信息 getUserInfo({commit}) { return new Promise((resolve, reject) => { getUserInfo().then(user => { if (user.data.success) { com ...
分类:
其他好文 时间:
2020-07-15 15:17:43
阅读次数:
82
在gitee上创建新仓库,复制仓库地址 在本地项目文件夹中,打开git bash命令行 git init提交代码 git add .git commit -m 'first commit'添加远程仓库 git remote add origin 远程地址代码推到远程 git push origin ...
分类:
其他好文 时间:
2020-07-15 12:46:04
阅读次数:
111
本人是在安装Infopath2013时遇到错误,系统是win10; 1: 1935 2: (BBC00726- F9C9-4C83-B6F0-C85B2C695753] 3: 0x80131049 4:lAssemblyCacheltem 5: Commit 6: Policy.14.0.offic ...
分类:
其他好文 时间:
2020-07-14 18:23:51
阅读次数:
131