mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
17ecd04fde
If we can't detect the physical memory, the new default is 8 GB on 64-bit architectures, and 1 GB on 32-bit architectures. If we *can* detect the physical memory, the new default is CLAMP(256 MB, phys_mem * 0.75, MAX_DFLT) where MAX_DFLT is 8 GB on 64-bit architectures and 2 GB on 32-bit architectures. You can still override the default by hand. The logic here is simply trying to choose a lower default value on systems with less than 12 GB of physical RAM.
8 lines
308 B
Plaintext
8 lines
308 B
Plaintext
o Minor features (security):
|
|
|
|
- If you don't specify MaxMemInQueues yourself, Tor now tries to
|
|
pick a good value based on your total system memory. Previously,
|
|
the default was always 8 GB. You can still override the default by
|
|
setting MaxMemInQueues yourself. Resolves ticket 11396.
|
|
|