From a85ff1f690abe1a0c3e0fe9cad92ff3c959340ca Mon Sep 17 00:00:00 2001 From: Louis Dureuil Date: Wed, 4 Jan 2023 16:53:45 +0100 Subject: [PATCH] Fix documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Clément Renault --- meilisearch/src/option.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meilisearch/src/option.rs b/meilisearch/src/option.rs index b63ec7e3f..f214cb3bd 100644 --- a/meilisearch/src/option.rs +++ b/meilisearch/src/option.rs @@ -65,10 +65,10 @@ const MEILI_MAX_INDEXING_MEMORY: &str = "MEILI_MAX_INDEXING_MEMORY"; const MEILI_MAX_INDEXING_THREADS: &str = "MEILI_MAX_INDEXING_THREADS"; const DEFAULT_LOG_EVERY_N: usize = 100000; -// Each environment (index and task-db) is taking space in the virtual address space +// Each environment (index and task-db) is taking space in the virtual address space. // -// The size of the virtual address sapce is limited by OS. About 100TB for Linux, about 10TB for Windows. -// This means that the number of indexes is limited to about 200 for Linux, and about 20 for Windows. +// The size of the virtual address space is limited by the OS. About 100TB for Linux and about 10TB for Windows. +// This means that the number of indexes is limited to about 200 for Linux and about 20 for Windows. pub const INDEX_SIZE: u64 = 536_870_912_000; // 500 GiB pub const TASK_DB_SIZE: u64 = 10_737_418_240; // 10 GiB