postgreSQL source code analysis -- establishment and use of index -- Hash index

2021SC@SDUSC catalogue Hash index In addition to using B-Tree index, postgreSQL can also use hash index. Hash index has faster query speed. This article mainly explains the principle of hash index, compares it with B-Tree, and analyzes the relevant data structure of hash index in the source code. Hash indexing principle Hash table The ...

Posted by incubi on Sun, 28 Nov 2021 18:57:01 -0800

Basic management index

Reference: https://eco.dameng.com Guidelines for managing indexes Index: provides a faster path to access table data DM8 common types typedescribeClustered indexEach ordinary table has and has only one clustered indexunique indexThe index data is unique according to the index keyFunctional indexContains the precomputed value of the ...

Posted by chrislead on Mon, 22 Nov 2021 00:12:53 -0800

Basic use of Elasticsearch

1. General I talked about the installation of Elasticsearch before. Today, let's talk about the basic use of Elasticsearch. two   Use of Elasticsearch index The index is equivalent to a table in mysql. 2.1 index creation 1) Head plug-in mode Select the index tab, click [new index], enter the index name, number of slices and num ...

Posted by geo3d on Mon, 20 Sep 2021 19:17:26 -0700