diff options
| author | nytpu <alex@nytpu.com> | 2021-03-18 13:48:26 -0600 |
|---|---|---|
| committer | nytpu <alex@nytpu.com> | 2021-03-18 13:48:26 -0600 |
| commit | a80d3f29ff0b76cea00672f24c408695ac8957d6 (patch) | |
| tree | 20592a251342cfef81ad6532d5ea2a41811e66d2 /flags.go | |
| parent | 326edc97c5b20ba0fed5a7d770d8fd61d0215ed3 (diff) | |
add flag for number of refresh workers
Diffstat (limited to 'flags.go')
| -rw-r--r-- | flags.go | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -40,8 +40,15 @@ var commands = map[string]*flag.FlagSet{ var ( // add addTypeFlag = commands["add"].BoolP( - "watch", "w", // long and shorthand flag - false, // default + "watch", "w", + false, `Watch a page instead of adding it as a feed.`, ) + + refreshWorkersFlag = commands["refresh"].IntP( + "num-workers", "n", + 5, // 5 workers is a safe default + `Number of worker threads to use when refreshing feeds. More is faster, +but there are more concurrent outgoing requests then.`, + ) ) |
