序列对象(也叫序列生成器)都是用CREATE SEQUENCE创建的特殊的单行表.一个序列对象通常用于为行或者表生成唯一的标识符.下面序列函数,为我们从序列对象中获取最新的序列值提供了简单和并发读取安全的方法. 下面是创建一张表的序列: 1.直接在表中指定该字段类型为serial类型 create table citys( id serial, name text ) 2.先独立创建序列,然后在新建表的时候指定就行了 minvalue no maxvalue start ; create tab…
http://www.postgresql.org/docs/9.3/static/runtime-config-replication.html 参考官方文档: wal_keep_segments (integer) Specifies the minimum number of past log file segments kept in the pg_xlog directory, in case a standby server needs to fetch them for strea…