Skip to content

Commit

Permalink
README: Add low memory usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
heiher committed Oct 15, 2024
1 parent ac6c4a9 commit 3f7e33f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,19 @@ sudo route change -inet default -interface utun99
sudo route change -inet6 default -interface utun99
```

#### Low memory usage

On low-memory systems like iOS, reducing the size of the TCP buffer
and task stack can help prevent out-of-memory issues.

```yaml
misc:
# task stack size (bytes)
task-stack-size: 24576 # 20480 + tcp-buffer-size
# tcp buffer size (bytes)
tcp-buffer-size: 4096
```
#### Docker Compose
```yaml
Expand Down

0 comments on commit 3f7e33f

Please sign in to comment.