0

I am new with erlang. I am trying to tune my erlang configuration for achieving higher connection rates on my mongooseim server. I found some people suggested to increase the async thread a little bit and enabling kernel poll. When I log into my erlang shell I see:

Erlang/OTP 17 [erts-6.3] [source] [64-bit] [smp:2:2] [async-threads:10] [kernel-poll:false]

now how can I increase async-threads to lets say 50 and turn on kernel-poll ?

Kamrul Khan
  • 3,260
  • 4
  • 32
  • 59
  • 1
    http://stackoverflow.com/questions/1182025/what-do-the-erlang-emulator-info-statements-mean –  Apr 02 '15 at 22:24

1 Answers1

2

In addition to to the link added by Atomic_alarm in the comments below the question - (What do the Erlang emulator info statements mean?). In Mongooseim you can set erl flags in etc/vm.args. To increase the number of async threads change the following line: +A 5 to +A 50

Community
  • 1
  • 1