Remove old unmaintained docs (#5699)

- removes backend/{fs,xl} files.
- removes FreeBSD doc since we already have FreeNAS doc.
- removes sets/ directory which is redundant with
  large-bucket directory.
- removes browser/ directory which attempts
  to explain about browser RPC calls, since
  its an internal API we do not need to document it.
This commit is contained in:
Harshavardhana
2018-03-23 11:37:04 -07:00
committed by Nitish Tiwari
parent 850caaa1be
commit 020cc8b669
13 changed files with 1 additions and 335 deletions

View File

@@ -7,7 +7,7 @@ Following network parameter settings can help ensure optimal Minio server perfor
- *`tcp_fin_timeout`* : A socket left in memory takes approximately 1.5Kb of memory. It makes sense to close the unused sockets preemptively to ensure no memory leakage. This way, even if a peer doesn't close the socket due to some reason, the system itself closes it after a timeout. `tcp_fin_timeout` variable defines this timeout and tells kernel how long to keep sockets in the state FIN-WAIT-2. We recommend setting it to 30. You can set it as shown below
```sh
`sysctl -w net.ipv4.tcp_fin_timeout=30`
sysctl -w net.ipv4.tcp_fin_timeout=30
```
- *`tcp_keepalive_probes`* : This variable defines the number of unacknowledged probes to be sent before considering a connection dead. You can set it as shown below