mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 21:54:10 +03:00
e09d444068
This does not really solve the issue with blocking autovacuum requests and can lead to incomplete indexes and bogus out-of-disk messages. Fixes #1549.
7 lines
458 B
SQL
7 lines
458 B
SQL
-- Indices used for /search API.
|
|
-- These indices are created only after the indexing process is done.
|
|
|
|
CREATE INDEX idx_search_name_nameaddress_vector ON search_name USING GIN (nameaddress_vector) WITH (fastupdate = off) {ts:search-index};
|
|
CREATE INDEX idx_search_name_name_vector ON search_name USING GIN (name_vector) WITH (fastupdate = off) {ts:search-index};
|
|
CREATE INDEX idx_search_name_centroid ON search_name USING GIST (centroid) {ts:search-index};
|