PostgreSQL 10.0 preview change - pg_xlog,pg_clog,pg_log directory renamed pg_wal,pg_xact,log
Label
PostgreSQL , 10.0 , pg_xact , pg_wal , log , pg_clog , pg_xlog , pg_log
background
10.0 renamed several directories with certain ambiguities. They are respectively
pg_xlog, pg_clog, pg_log
Renamed
pg_wal, pg_xact, log
They correspond to WAL (write ahead log) log, transaction status log and log respectively.
It saves people from deletin ...
Posted by droomagon on Mon, 11 Feb 2019 20:03:17 -0800
vue2.x Cnode community is based on vue, vue-router, Vue x, axios, es6 development
About project
The vue2.x Cnode community is based on vue, vue-router, Vue x, axios and es6. It compiles and packages the project http://www.vue-js.com/topic/58ae7fc2a9c1282817afc2e0 using web pack construction tools.
If this open source project is helpful for everyone to learn vue's bucket, please give me a star, because your star make ...
Posted by Gregadeath on Mon, 11 Feb 2019 04:06:18 -0800
Mock Functions(Mock Return Values) for React 16 Jest Unit Tests
Reprinted address
Mock Functions(Mock Return Values) for React16 Jest Unit Tests
Project Initialization [Use previous projects here to save time]
Project Initialization Address
https://github.com/durban89/webpack4-react16-reactrouter-demo.git
tag: v_1.0.20
Pull out
git clone https://github.com/durban89/webpack4-react16-reactro ...
Posted by mike16889 on Tue, 05 Feb 2019 06:54:15 -0800
React 16 Jest ES6 Class Mocks (simulation using ES6 grammar class) Example 2
Reprinted address
React 16 Jest ES6 Class Mocks (simulation using ES6 grammar class) Example 2
Project Initialization
git clone https://github.com/durban89/webpack4-react16-reactrouter-demo.git
cd webpack4-react16-reactrouter-demo
git fetch origin
git checkout v_1.0.30
npm install
ES6 Class Mocks (simulation using ES6 gramm ...
Posted by cronus on Mon, 04 Feb 2019 16:33:16 -0800
Go Basic Learning Record - Writing Web Application - Blog Editor Perfect Update Function
Every time I put my practice code on github and typed a tag, which is convenient for the students to use later. Here I share my practice with the code of the following branches.
https://github.com/durban89/typescript_demo.git
tag: 1.1.1
Last article[ Go Basic Learning Record - Writing Web Application - Perfect Blog Editing Function ] We just re ...
Posted by wayz1229 on Fri, 01 Feb 2019 11:15:16 -0800
Implementation of git Quick Submitting Code and Quick Rollback by shell script
Create a commit library:
[root@centos-3 cml]# echo "check github" > index.html
[root@centos-3 cml]# cat index.html
check github
[root@centos-3 cml]# git add index.html
[root@centos-3 cml]# git commit -m "check github"
[master b357825] check github
1 files changed, 1 insertions(+), 1 deletions(-)
[root@centos-3 cml]# git push
Count ...
Posted by radhoo on Fri, 01 Feb 2019 08:39:15 -0800
Rethinking the Model of Go Basic Learning Record-Writing Web Application-Blog Editing Function
Every time I put my practice code on github and typed a tag, which is convenient for the students to use later. Here I share my practice with the code of the following branches.
https://github.com/durban89/typescript_demo.git
tag: 1.1.2
Last article[ Go Basic Learning Record - Writing Web Application - Blog Editor Perfect Update Function ] In t ...
Posted by pluto on Thu, 31 Jan 2019 20:15:15 -0800
Model Query Reconstruction of Blog Editing Function in Web Development of Go Basic Learning Records
Every time I put my practice code on github and typed a tag, which is convenient for the students to use later. Here I share my practice with the code of the following branches.
https://github.com/durban89/typescript_demo.git
tag: 1.1.4
In the previous article, [Go Basic Learning Record - Writing Web Application - Model Refactoring of Blog Edit ...
Posted by beebum on Tue, 29 Jan 2019 16:06:16 -0800
Common commands of team development tool git
Common Git commands
Git configuration
git config --global user.name "storm"
git config --global user.email "stormzhang.dev@gmail.com"
git config --global color.ui true
git config --global alias.co checkout # alias
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.br branch
git config --global cor ...
Posted by ramas on Tue, 29 Jan 2019 15:21:14 -0800
java thread synchronization
Why Thread Synchronization
When we have multiple threads to operate on the same resource, such as a file, we can not allow multiple threads to operate on the file at the same time. Because when a file is shared, multiple operations will conflict. I believe that people who have used git for team development will have a profound experience.
At th ...
Posted by qbox on Tue, 29 Jan 2019 12:18:15 -0800