mirror of
https://github.com/YGGverse/aquatic-crawler.git
synced 2026-03-31 17:15:35 +00:00
rename clear option to preload_clear
This commit is contained in:
parent
a112b49eba
commit
3633aedfd0
4 changed files with 13 additions and 13 deletions
|
|
@ -11,10 +11,6 @@ pub struct Config {
|
|||
#[arg(short, long, default_value_t = String::from("ei"))]
|
||||
pub debug: String,
|
||||
|
||||
/// Clear previous index collected on crawl session start
|
||||
#[arg(long, default_value_t = false)]
|
||||
pub clear: bool,
|
||||
|
||||
/// Absolute path(s) or URL(s) to import infohashes from the Aquatic tracker JSON/API
|
||||
///
|
||||
/// * PR#233 feature
|
||||
|
|
@ -69,6 +65,10 @@ pub struct Config {
|
|||
#[arg(long)]
|
||||
pub preload: Option<String>,
|
||||
|
||||
/// Clear previous data collected on crawl session start
|
||||
#[arg(long, default_value_t = false)]
|
||||
pub preload_clear: bool,
|
||||
|
||||
/// Preload only files match regex pattern (list only without preload by default)
|
||||
/// * see also `preload_max_filesize`, `preload_max_filecount` options
|
||||
///
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue