From 52d0979099a5d0a2f2d71c3b862549bcab168df4 Mon Sep 17 00:00:00 2001 From: eric Date: Thu, 18 Apr 2024 11:53:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81=E7=BB=93?= =?UTF-8?q?=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kr2r/src/bin/hashshard.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kr2r/src/bin/hashshard.rs b/kr2r/src/bin/hashshard.rs index fce8989..465fe7f 100644 --- a/kr2r/src/bin/hashshard.rs +++ b/kr2r/src/bin/hashshard.rs @@ -65,7 +65,7 @@ pub struct Args { /// Specifies the hash file capacity. Acceptable formats include numeric values followed by 'K', 'M', or 'G' (e.g., '1.5G', '250M', '1024K'). /// Note: The specified capacity affects the index size, with a factor of 4 applied. For example, specifying '1G' results in an index size of '4G'. /// Default: 1G (capacity 1G = file size 4G) - #[clap(long = "hash-capacity", value_parser = parse_size, default_value = "1G")] + #[clap(long = "hash-capacity", value_parser = parse_size, default_value = "1G", help = "Specifies the hash file capacity.\nAcceptable formats include numeric values followed by 'K', 'M', or 'G' (e.g., '1.5G', '250M', '1024K').\nNote: The specified capacity affects the index size, with a factor of 4 applied.\nFor example, specifying '1G' results in an index size of '4G'.\nDefault: 1G (capacity 1G = file size 4G)")] hash_capacity: usize, }