We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c861293 commit 90e6539Copy full SHA for 90e6539
1 file changed
src/cli.rs
@@ -550,9 +550,12 @@ pub struct Opts {
550
#[arg(long, hide = true, value_parser = parse_millis, conflicts_with("sort"))]
551
pub max_buffer_time: Option<Duration>,
552
553
- /// Sort search results by the given key before printing or executing commands.
+ /// Sort search results by the given key before printing or executing commands via `--exec`/`--exec-batch`.
554
///
555
- /// Note: this buffers all results in memory before outputting.
+ /// This option results in slower execution as parallel execution is effectively disabled.
556
+ ///
557
+ /// Warning: This option significantly increases memory usage.
558
+ /// All results are buffered in memory before outputting.
559
#[arg(
560
long,
561
value_name = "key",
0 commit comments