Fix typos on Install docs

:)
This commit is contained in:
Mathieu Leplatre 2020-03-31 12:58:48 +02:00 committed by GitHub
parent bab49715a3
commit f5d30e9793
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,8 +77,8 @@ Start the server
## Search ## Search
UMap uses Postgresql tsvector for searching. It case your database is big, you UMap uses Postgresql tsvector for searching. In case your database is big, you
may want to add an index. For that, you sould do so: may want to add an index. For that, you should do so:
CREATE EXTENSION unaccent; CREATE EXTENSION unaccent;
CREATE EXTENSION btree_gin; CREATE EXTENSION btree_gin;
@ -89,6 +89,6 @@ may want to add an index. For that, you sould do so:
## Optimisations ## Optimisations
To speep up umap home page rendering on large instance, the following index can be added too (make sure you set the center to your default instance map center): To speed up uMap homepage rendering on a large instance, the following index can be added too (make sure you set the center to your default instance map center):
CREATE INDEX leaflet_storage_map_optim ON leaflet_storage_map (modified_at) WHERE ("leaflet_storage_map"."share_status" = 1 AND ST_Distance("leaflet_storage_map"."center", ST_GeomFromEWKT('SRID=4326;POINT(2 51)')) > 1000.0); CREATE INDEX leaflet_storage_map_optim ON leaflet_storage_map (modified_at) WHERE ("leaflet_storage_map"."share_status" = 1 AND ST_Distance("leaflet_storage_map"."center", ST_GeomFromEWKT('SRID=4326;POINT(2 51)')) > 1000.0);