From c8f76041ce0248fa3f3547e9f5263c449ed3212f Mon Sep 17 00:00:00 2001 From: prvyk Date: Fri, 28 Feb 2025 02:41:20 +0200 Subject: [PATCH] Fix website. --- website/docs/commands/data-structures.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/commands/data-structures.md b/website/docs/commands/data-structures.md index 6ee9c4b14d..3cdd9ade43 100644 --- a/website/docs/commands/data-structures.md +++ b/website/docs/commands/data-structures.md @@ -1643,7 +1643,7 @@ The command default is to return unsorted items. Two different sorting methods c ASC: Sort returned items from the nearest to the farthest, relative to the center. DESC: Sort returned items from the farthest to the nearest, relative to the center. -By default all the matching items are returned. It is possible to limit the results to the first N matching items by using the COUNT option. +By default all the matching items are returned. It is possible to limit the results to the first N matching items by using the COUNT option. By default the command returns the items to the client. It is possible to store the results with one of these options: @@ -1683,7 +1683,7 @@ The command default is to return unsorted items. Two different sorting methods c ASC: Sort returned items from the nearest to the farthest, relative to the center. DESC: Sort returned items from the farthest to the nearest, relative to the center. -By default all the matching items are returned. It is possible to limit the results to the first N matching items by using the COUNT option. When ANY is provided the command will return as soon as enough matches are found, so the results may not be the ones closest to the specified point, but on the other hand, the effort invested by the server is significantly lower. When ANY is not provided, the command will perform an effort that is proportional to the number of items matching the specified area and sort them, so to query very large areas with a very small COUNT option may be slow even if just a few results are returned. +By default all the matching items are returned. It is possible to limit the results to the first N matching items by using the COUNT option. When ANY is provided the command will return as soon as enough matches are found, so the results may not be the ones closest to the specified point, but on the other hand, the effort invested by the server is significantly lower. When ANY is not provided, the command will perform an effort that is proportional to the number of items matching the specified area and sort them, so to query very large areas with a very small COUNT option may be slow even if just a few results are returned. ---