From f5d30e9793824018c2dd8d5b39a8b71dfe06fe66 Mon Sep 17 00:00:00 2001 From: Mathieu Leplatre Date: Tue, 31 Mar 2020 12:58:48 +0200 Subject: [PATCH] Fix typos on Install docs :) --- docs/install.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/install.md b/docs/install.md index 9324ed1e..b8d7fe54 100644 --- a/docs/install.md +++ b/docs/install.md @@ -77,8 +77,8 @@ Start the server ## Search -UMap uses Postgresql tsvector for searching. It case your database is big, you -may want to add an index. For that, you sould do so: +UMap uses Postgresql tsvector for searching. In case your database is big, you +may want to add an index. For that, you should do so: CREATE EXTENSION unaccent; CREATE EXTENSION btree_gin; @@ -89,6 +89,6 @@ may want to add an index. For that, you sould do so: ## 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);