mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 17:12:13 -06:00
v0.11.34
This commit is contained in:
parent
ed519c9138
commit
108665fc4f
|
@ -505,11 +505,11 @@ below are some tweaks roughly ordered by usefulness:
|
|||
* `--http-only` or `--https-only` (unless you want to support both protocols) will reduce the delay before a new connection is established
|
||||
* `--hist` pointing to a fast location (ssd) will make directory listings and searches faster when `-e2d` or `-e2t` is set
|
||||
* `--no-hash` when indexing a networked disk if you don't care about the actual filehashes and only want the names/tags searchable
|
||||
* `-j` enables multiprocessing (actual multithreading) and can theoretically make copyparty perform better in cpu-intensive workloads, for example:
|
||||
* `-j` enables multiprocessing (actual multithreading) and can make copyparty perform better in cpu-intensive workloads, for example:
|
||||
* huge amount of short-lived connections
|
||||
* really heavy traffic (downloads/uploads)
|
||||
|
||||
however it adds an overhead to internal communication so it might be a net loss, see if it works 4 u
|
||||
...however it adds an overhead to internal communication so it might be a net loss, see if it works 4 u
|
||||
|
||||
|
||||
# dependencies
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
# coding: utf-8
|
||||
|
||||
VERSION = (0, 11, 33)
|
||||
VERSION = (0, 11, 34)
|
||||
CODENAME = "the grid"
|
||||
BUILD_DT = (2021, 7, 7)
|
||||
BUILD_DT = (2021, 7, 9)
|
||||
|
||||
S_VERSION = ".".join(map(str, VERSION))
|
||||
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
||||
|
|
Loading…
Reference in a new issue