Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Average Internet Object Size: 32KB
Disk Cache Size: 8GB2GB
Disk Cache Size In Bytes: 8589934592 2147483648 (8 2 * 1024 * 1024 * 1024)
Average Internet Object Size In Bytes: 32768 (32 * 1024)
Disk Cache Object Capacity: 262144 (8589934592 2147483648 / 32768)

Code Block
CONFIG proxy.config.cache.min_average_object_size INT 26214465536

NOTE: This setting should be sized relative to the size of your disk cache.
Also, it requires clearing the disk cache and restarting ATS to properly take effect.

...

Code Block
CONFIG proxy.config.reverse_proxy.enabled INT 0
CONFIG proxy.config.url_remap.remap_required INT 0

HTTP Socket I/O Buffers

The default config for ATS leaves these disabled.
I found that roughly 1MB of buffer for each seems to be optimal.

Code Block

CONFIG proxy.config.net.sock_send_buffer_size_in INT 1048576
CONFIG proxy.config.net.sock_recv_buffer_size_in INT 1048576
CONFIG proxy.config.net.sock_send_buffer_size_out INT 1048576
CONFIG proxy.config.net.sock_recv_buffer_size_out INT 1048576

Miscellaneous Task Threads

...