Add options (nicked from rabbitmq-server's startup scripts) that unbork Erlang performance

This commit is contained in:
Tony Garnock-Jones 2014-05-05 14:28:14 -04:00
parent 6379bcbcea
commit ac90dfdba1
1 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
#!/bin/sh
erlc echoserver.erl
erl -noshell -run echoserver start
erl \
+K true \
+A30 \
+P 1048576 \
-kernel inet_default_connect_options '[{nodelay,true}]' \
-noshell \
-run echoserver start