<span style="display:none">https://blog.csdn.net/greywolf0824/article/details/85072530</span>
[TOC]
PostgreSQL中有两类锁:表级锁和行级锁。当要查询、插入、更新、删除表中数据时,首先要获得表级锁,然后获得行级锁。
# <span style="font-size:15px">**1、表级锁**<span>
<table border="1" cellspacing="0">
<tbody>
<tr>
<td style="width:77.75pt;"><p style="margin-left:0cm;"><span style="color:#000000;">锁</span><span
style="color:#000000;">模式</span></p></td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">解释</p></td>
</tr>
<tr>
<td rowspan="2" style="width:77.75pt;"><p style="margin-left:0cm;">Access Share</p></td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">只与Access Exclusive锁模式冲突。</p></td>
</tr>
<tr>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">查询命令(Select command)将会在它查询的表上获取Access
Shared锁,一般地,任何一个对表上的只读查询操作都将获取这种类型锁。</p></td>
</tr>
<tr>
<td rowspan="2" style="width:77.75pt;"><p style="margin-left:0cm;">Row Share</p></td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">与Exclusive和Access Exclusive锁模式冲突。</p>
</td>
</tr>
<tr>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">Select for update和Select for
share命令将获得这种类型锁,并且所有被引用但没有for update 的表上会加上Access Shared锁。</p></td>
</tr>
<tr>
<td rowspan="2" style="width:77.75pt;"><p style="margin-left:0cm;">Row Exclusive</p></td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">与Share,Shared Row
Exclusive,Exclusive,Access Exclusive模式冲突。</p></td>
</tr>
<tr>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">
Update/Delete/Insert命令会在目标表上获得这种类型的锁,并且在其它被引用的表上加上Access Share锁,一般地,更改表数据的命令都将在这张表上获得Row Exclusive锁。</p>
</td>
</tr>
<tr>
<td rowspan="2" style="width:77.75pt;"><p style="margin-left:0cm;">Share Update Exclusive</p></td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">Share Update Exclusive,Share,Share
Row Exclusive,Exclusive,Access exclusive模式冲突,这种模式保护一张表不被并发的模式更改和Vacuum。</p></td>
</tr>
<tr>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">Vacuum(without full),Analyze 和 Create
index concur-ently命令会获得这种类型锁。</p></td>
</tr>
<tr>
<td rowspan="2" style="width:77.75pt;"><p style="margin-left:0cm;">Share</p></td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">与Row Exclusive,Shared Update
Exclusive,Share Row Exclusive,Exclusive,Access exclusive锁模式冲突,这种模式保护一张表数据不被并发的更改。</p></td>
</tr>
<tr>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">Create index命令会获得这种锁模式。</p></td>
</tr>
<tr>
<td rowspan="2" style="width:77.75pt;"><p style="margin-left:0cm;">Share Row Exclusive</p></td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">与Row Exclusive,Share Update
Exclusive,Shared,Shared Row Exclusive,Exclusive,Access Exclusive锁模式冲突。</p></td>
</tr>
<tr>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">任何PostgreSQL命令不会自动获得这种类型的锁。</p></td>
</tr>
<tr>
<td rowspan="2" style="width:77.75pt;"><p style="margin-left:0cm;">Exclusive</p></td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">与ROW Share , Row Exclusive, Share
Update Exclusive, Share , Share Row Exclusive, Exclusive, Access
Exclusive模式冲突,这种锁模式仅能与Access Share 模式并发,换句话说,只有读操作可以和持有Exclusive锁的事务并行。</p></td>
</tr>
<tr>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">任何PostgreSQL命令不会自动获得这种类型的锁。</p></td>
</tr>
<tr>
<td style="width:77.75pt;"><p style="margin-left:0cm;">Access Exclusive</p></td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">与所有模式锁冲突(Access Share,Row Share,Row
Exclusive,Share Update Exclusive,Share , Share Row Exclusive,Exclusive,Access
Exclusive),这种模式保证了当前只有一个人访问这张表;ALTER TABLE,DROP TABLE,TRUNCATE,REINDEX,CLUSTER,VACUUM FULL 命令会获得这种类型锁,在Lock
table 命令中,如果没有申明其它模式,它也是默认模式。</p></td>
</tr>
</tbody>
</table>
# <span style="font-size:15px">**2、表级锁的冲突矩阵**</span>
“N”表示这两种表冲突,也就是不同的进程不能同时持有这两种锁
<table border="1" cellspacing="0">
<tbody>
<tr>
<td rowspan="2" style="width:56.45pt;"><p style="margin-left:0cm;">请求的锁模式</p></td>
<td colspan="8" style="width:358.35pt;"><p style="margin-left:0cm;">已申请到的锁模式</p></td>
</tr>
<tr>
<td style="width:48.05pt;"><p style="margin-left:0cm;">Access Share</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;">Row Share</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Row Exclusive</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Share Update Exclusive</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;">Share</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Share Row Exclusive</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Exclusive</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Access Exclusive</p></td>
</tr>
<tr>
<td style="width:56.45pt;"><p style="margin-left:0cm;">Access Share</p></td>
<td style="width:48.05pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
</tr>
<tr>
<td style="width:56.45pt;"><p style="margin-left:0cm;">Row Share</p></td>
<td style="width:48.05pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
</tr>
<tr>
<td style="width:56.45pt;"><p style="margin-left:0cm;">Row Exclusive</p></td>
<td style="width:48.05pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
</tr>
<tr>
<td style="width:56.45pt;"><p style="margin-left:0cm;">Share Update Exclusive</p></td>
<td style="width:48.05pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
</tr>
<tr>
<td style="width:56.45pt;"><p style="margin-left:0cm;">Share</p></td>
<td style="width:48.05pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
</tr>
<tr>
<td style="width:56.45pt;"><p style="margin-left:0cm;">Share Row Exclusive</p></td>
<td style="width:48.05pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
</tr>
<tr>
<td style="width:56.45pt;"><p style="margin-left:0cm;">Exclusive</p></td>
<td style="width:48.05pt;"><p style="margin-left:0cm;">Y</p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
</tr>
<tr>
<td style="width:56.45pt;"><p style="margin-left:0cm;">Access Exclusive</p></td>
<td style="width:48.05pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:39.4pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
<td style="width:46.3pt;"><p style="margin-left:0cm;"><span style="color:#ff0000;">N</span></p></td>
</tr>
</tbody>
</table>
# <span style="font-size:15px">**3、表级锁对应的操作**</span>
<table border="1" cellspacing="0">
<tbody>
<tr>
<td style="vertical-align:top;width:113.15pt;"><p style="margin-left:0cm;">锁类型</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">对应的数据库操作</p></td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">Access Share</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">select</p></td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">Row Share</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">select for update, select for
share</p></td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">Row Exclusive</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">update,delete,insert</p></td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">Share Update Exclusive</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">vacuum(without full),analyze,create
index concurrently</p></td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">Share</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">create index</p></td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">Share Row Exclusive</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">任何Postgresql命令不会自动获得这种类型的锁</p></td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">Exclusive</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">任何Postgresql命令不会自动获得这种类型的锁</p></td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">Access Exclusive</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">alter table,drop
table,truncate,reindex,cluster,vacuum full</p></td>
</tr>
</tbody>
</table>
# <span style="font-size:15px">**4、行级锁**<span>
行级锁模式只有两种,分别是共享锁和排他锁,或者说是读锁或写锁。由于多版本的实现,实际读取行数据时,并不会在行上执行任何锁。
特定行上的行级锁是在行被更新的时候自动请求的(或者被删除时或标记为更新)。 锁一直保持到事务提交或者回滚。行级锁不影响对数据的查询;它们只阻塞对同一行的写入。 要在不修改某行的前提下请求在该行的行级锁,用 SELECT FOR UPDATE 选取该行。请注意一旦我们请求了特定的行级锁,那么该事务就可以多次对该行进行更新而不用担心冲突。
<table border="1" cellspacing="0">
<tbody>
<tr>
<td style="width:77.75pt;">锁</td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">解释</p></td>
</tr>
<tr>
<td style="width:77.75pt;"><p style="margin-left:0cm;">FOR UPDATE</p></td>
<td style="vertical-align:top;width:337.05pt;"><p style="margin-left:0cm;">FOR UPDATE会导致由SELECT语句检索到的行被锁定,就好像它们要被更新。这可以阻止它们被其他事务锁定、修改或者删除,一直到当前事务结束。也就是说其他尝试UPDATE、DELETE、SELECT FOR UPDATE、SELECT FOR NO KEY UPDATE、SELECT FOR SHARE或者SELECT FOR KEY SHARE这些行的事务将被阻塞,直到当前事务结束。反过来,SELECT FOR UPDATE将等待已经在相同行上运行以上这些命令的并发事务,并且接着锁定并且返回被更新的行(或者没有行,因为行可能已被删除)。不过,在一个REPEATABLE READ或SERIALIZABLE事务中,如果一个要被锁定的行在事务开始后被更改,将会抛出一个错误</p></td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">FOR NO KEY UPDATE</p></td>
<td style="vertical-align:top;width:301.65pt;">
<p style="margin-left:0cm;">行为与FOR
UPDATE类似,不过获得的锁较弱:这种锁将不会阻塞尝试在相同行上获得锁的SELECT FOR KEY SHARE命令。任何不获取FOR UPDATE锁的UPDATE也会获得这种锁模式。</p>
</td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">FOR SHARE</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">行为与FOR NO KEY
UPDATE类似,不过它在每个检索到的行上获得一个共享锁而不是排他锁。一个共享锁会阻塞其他事务在这些行上执行UPDATE、DELETE、SELECT FOR UPDATE或者SELECT FOR NO KEY
UPDATE,但是它不会阻止它们执行SELECT FOR SHARE或者SELECT FOR KEY SHARE</p></td>
</tr>
<tr>
<td style="width:113.15pt;"><p style="margin-left:0cm;">FOR KEY SHARE</p></td>
<td style="vertical-align:top;width:301.65pt;"><p style="margin-left:0cm;">行为与FOR SHARE类似,不过锁较弱:SELECT FOR
UPDATE会被阻塞,但是SELECT FOR NO KEY UPDATE不会被阻塞。一个键共享锁会阻塞其他事务执行修改键值的DELETE或者UPDATE,但不会阻塞其他UPDATE,也不会阻止SELECT FOR
NO KEY UPDATE、SELECT FOR SHARE或者SELECT FOR KEY SHARE。</p></td>
</tr>
</tbody>
</table>
# <span style="font-size:15px">**5、行级锁的冲突矩阵**<span>
<table summary="冲突的行级锁" border="1">
<colgroup>
<col class="col1">
<col class="lockst">
<col class="col3">
<col class="col4">
<col class="lockend">
</colgroup>
<thead>
<tr>
<th rowspan="2">要求的锁模式</th>
<th colspan="4">当前的锁模式</th>
</tr>
<tr>
<th>FOR KEY SHARE</th>
<th>FOR SHARE</th>
<th>FOR NO KEY UPDATE</th>
<th>FOR UPDATE</th>
</tr>
</thead>
<tbody>
<tr>
<td>FOR KEY SHARE</td>
<td align="center">Y</td>
<td align="center">Y</td>
<td align="center">Y</td>
<td align="center">N</td>
</tr>
<tr>
<td>FOR SHARE</td>
<td align="center">Y</td>
<td align="center">Y</td>
<td align="center">N</td>
<td align="center">N</td>
</tr>
<tr>
<td>FOR NO KEY UPDATE</td>
<td align="center">Y</td>
<td align="center">N</td>
<td align="center">N</td>
<td align="center">N</td>
</tr>
<tr>
<td>FOR UPDATE</td>
<td align="center">N</td>
<td align="center">N</td>
<td align="center">N</td>
<td align="center">N</td>
</tr>
</tbody>
</table>
- PHP
- PHP基础
- PHP介绍
- 如何理解PHP是弱类型语言
- 超全局变量
- $_SERVER详解
- 字符串处理函数
- 常用数组函数
- 文件处理函数
- 常用时间函数
- 日历函数
- 常用url处理函数
- 易混淆函数区别(面试题常见)
- 时间戳
- PHP进阶
- PSR规范
- RESTFUL规范
- 面向对象
- 三大基本特征和五大基本原则
- 访问权限
- static关键字
- static关键字
- 静态变量与普通变量
- 静态方法与普通方法
- const关键字
- final关键字
- abstract关键字
- self、$this、parent::关键字
- 接口(interface)
- trait关键字
- instanceof关键字
- 魔术方法
- 构造函数和析构函数
- 私有属性的设置获取
- __toString()方法
- __clone()方法
- __call()方法
- 类的自动加载
- 设计模式详解
- 关于设计模式的一些建议
- 工厂模式
- 简单工厂模式
- 工厂方法模式
- 抽象工厂模式
- 区别和适用范围
- 策略模式
- 单例模式
- HTTP
- 定义
- 特点
- 工作过程
- request
- response
- HTTP状态码
- URL
- GET和POST的区别
- HTTPS
- session与cookie
- 排序算法
- 冒泡排序算法
- 二分查找算法
- 直接插入排序算法
- 希尔排序算法
- 选择排序算法
- 快速排序算法
- 循环算法
- 递归与尾递归
- 迭代
- 日期相关的类
- DateTimeInterface接口
- DateTime类
- DateTimeImmutable类
- DateInterval类
- DateTimeZone类
- DatePeriod类
- format参数格式
- DateInterval的format格式化参数
- 预定义接口
- ArrayAccess(数组式访问)接口
- Serializable (序列化)接口
- Traversable(遍历)接口
- Closure类
- Iterator(迭代器)接口
- IteratorAggregate(聚合迭代器) 接口
- Generator (生成器)接口
- composer
- composer安装与使用
- python
- python3执行tarfile解压文件报错:tarfile.ReadError:file could not be opened successfully
- golang
- 单元测试
- 单元测试框架
- Golang内置testing包
- GoConvey库
- testify库
- 打桩与mock
- GoMock框架
- Gomonkey框架
- HTTP Mock
- httpMock
- mux库/httptest
- 数据库
- MYSQL
- SQL语言的分类
- 事务(重点)
- 索引
- 存储过程
- 触发器
- 视图
- 导入导出数据库
- 优化mysql数据库的方法
- MyISAM与InnoDB区别
- 外连接、内连接的区别
- 物理文件结构
- PostgreSQL
- 编译安装
- pgsql常用命令
- pgsql应用目录(bin目录)文件结构解析
- pg_ctl
- initdb
- psql
- clusterdb
- cluster命令
- createdb
- dropdb
- createuser
- dropuser
- pg_config
- pg_controldata
- pg_checksums
- pgbench
- pg_basebackup
- pg_dump
- pg_dumpall
- pg_isready
- pg_receivewal
- pg_recvlogical
- pg_resetwal
- pg_restore
- pg_rewind
- pg_test_fsync
- pg_test_timing
- pg_upgrade
- pg_verifybackup
- pg_archivecleanup
- pg_waldump
- postgres
- reindexdb
- vacuumdb
- ecpg
- pgsql数据目录文件结构解析
- pgsql数据目录文件结构解析
- postgresql.conf解析
- pgsql系统配置参数说明
- pgsql索引类型
- 四种索引类型解析
- 索引之ctid解析
- 索引相关操作
- pgsql函数解析
- pgsql系统函数解析
- pgsql窗口函数解析
- pgsql聚合函数解析
- pgsql系统表解析
- pg_stat_all_indexes
- pg_stat_all_tables
- pg_statio_all_indexes
- pg_statio_all_tables
- pg_stat_database
- pg_stat_statements
- pg_extension
- pg_available_extensions
- pg_available_extension_versions
- pgsql基本原理
- 进程和内存结构
- 存储结构
- 数据文件的内部结构
- 垃圾回收机制VACUUM
- 事务日志WAL
- 并发控制
- 介绍
- 事务ID-txid
- 元组结构-Tuple Structure
- 事务状态记录-Commit Log (clog)
- 事务快照-Transaction Snapshot
- 事务快照实例
- 事务隔离
- 事务隔离级别
- 读已提交-Read committed
- 可重复读-Repeatable read
- 可序列化-Serializable
- 读未提交-Read uncommitted
- 锁机制
- 扩展机制解析
- 扩展的定义
- 扩展的安装方式
- 自定义创建扩展
- 扩展的管理
- 扩展使用实例
- 在pgsql中使用last、first聚合函数
- pgsql模糊查询不走索引的解决方案
- pgsql的pg_trgm扩展解析与验证
- 高可用
- LNMP
- LNMP环境搭建
- 一键安装包
- 搭建方法
- 配置文件目录
- 服务器管理系统
- 宝塔(Linux)
- 安装与使用
- 开放API
- 自定义apache日志
- 一键安装包LNMP1.5
- LNMP1.5:添加、删除站点
- LNMP1.5:php多版本切换
- LNMP1.5 部署 thinkphp项目
- Operation not permitted解决方法
- Nginx
- Nginx的产生
- 正向代理和反向代理
- 负载均衡
- Linux常用命令
- 目录与文件相关命令
- 目录操作命令
- 文件编辑命令
- 文件查看命令
- 文件查找命令
- 文件权限命令
- 文件上传下载命令
- 用户和群组相关命令
- 用户与用户组的关系
- 用户相关的系统配置文件
- 用户相关命令
- 用户组相关命令
- 压缩与解压相关命令
- .zip格式
- .tar.gz格式
- .gz格式
- .bz2格式
- 查看系统版本
- cpuinfo详解
- meminfo详解
- getconf获取系统信息
- 磁盘空间相关命令
- 查看系统负载情况
- 系统环境变量
- 网络相关命令
- ip命令详解
- ip命令格式详解
- ip address命令详解
- ip link命令详解
- ip rule命令详解
- ip route命令详解
- nslookup命令详解
- traceroute命令详解
- netstat命令详解
- route命令详解
- tcpdump命令详解
- 系统进程相关命令
- ps命令详解
- pstree命令详解
- kill命令详解
- 守护进程-supervisord
- 性能监控相关命令
- top命令详解
- iostat命令详解
- pidstat命令详解
- iotop命令详解
- mpstat命令详解
- vmstat命令详解
- ifstat命令详解
- sar命令详解
- iftop命令详解
- 定时任务相关命令
- ssh登录远程主机
- ssh口令登录
- ssh公钥登录
- ssh带密码登录
- ssh端口映射
- ssh配置文件
- ssh安全设置
- 历史纪录
- history命令详解
- linux开启操作日志记录
- 拓展
- git
- git初始化本地仓库-https
- git初始化仓库-ssh
- git-查看和设置config配置
- docker
- 概念
- docker原理
- docker镜像原理
- docker Overlay2 文件系统原理
- docker日志原理
- docker日志驱动
- docker容器日志管理
- 原理论证
- 验证容器的启动是作为Docker Daemon的子进程
- 验证syslog类型日志驱动
- 验证journald类型日志驱动
- 验证local类型日志驱动
- 修改容器的hostname
- 修改容器的hosts
- 验证联合挂载技术
- 验证启动多个容器对于磁盘的占用情况
- 验证写时复制原理
- 验证docker内容寻址原理
- docker存储目录
- /var/lib/docker目录
- image目录
- overlay2目录
- 数据卷
- 具名挂载和匿名挂载
- 数据卷容器
- Dockerfile详解
- dockerfile指令详解
- 实例:构造centos
- 实例:CMD和ENTRYPOINT的区别
- docker网络详解
- docker-compose
- 缓存
- redis
- redis的数据类型和应用场景
- redis持久化
- RDB持久化
- AOF持久化
- redis缓存穿透、缓存击穿、缓存雪崩
- 常见网络攻击类型
- CSRF攻击
- XSS攻击
- SQL注入
- Cookie攻击
- 历史项目经验
- 图片上传项目实例
- 原生php上传方法实例
- base64图片流
- tp5的上传方法封装实例
- 多级关系的递归查询
- 数组转树结构
- thinkphp5.1+ajax实现导出Excel
- JS 删除数组的某一项
- 判断是否为索引数组
- ip操作