05 2022 档案
摘要:1. 回表 使用非主键索引作为条件查询时,会先从非聚簇索引B+树中根据name字段找到主键字段的值,然后从聚簇索引B+树上根据主键字段值查找对应的某条记录 2. 什么是索引覆盖? 索引覆盖:通过普通索引查询的时候,不需要回表查询,直接可以获取到对应的数据 MySQL索引覆盖 回表查询 - it610
阅读全文
摘要:#创建测试表 create table tbl_pathman_test (id bigint,info text, ctime timestamp without time zone not null); 1. #按天分区,创建30个分区 #插入12条数据,每天一条 insert into tbl
阅读全文
摘要:1. https://pganalyze.com/docs/log-insights/server/S5 More generally, often out of memory occurs when operating a combination of too high work_mem toge
阅读全文
摘要:1. set work_mem="500MB"; (9条消息) PostgreSQL(三) 内存参数优化和原理(work_mem)内存表 pgfincore插件使用方法_是个好男人呀的博客-CSDN博客_postgresql 内存表
阅读全文