Postgresql中的表空间
表空间概念
在Postgresql中提供了表空间的概念,在Postgresql中表空间实际上就是给表指定一个存储目录,这件事情十分的伟大,为什么这么说呢?大家都知道现在很多新兴的硬件技术比如PCIe SSD技术的出现,使得存储的速度比普通的磁盘快数量级倍,这种情况下,当我们想要提升查询的性能时,我们可能希望将表存储在SSD上,通过表空间就能实现这种需求。
表空间使用
create tablespace tablespace_name [owner user_name] location '路径' -- 创建表空间的语法 create database db01 tablespace tablespace_name -- 在创建数据库时指定表空间 create table test01( id int,note text ) tablespace tablespace_name;