Browse Source

Disable kernel polling

Because the pollset is single core, on benchmarks that are mostly
waiting on the pollset (almost no CPU work), it may reduce throughput.

Therefore we are disabling the pollset and see how it will affect
future results.
José Valim 8 years ago
parent
commit
a8fe9e59df
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frameworks/Elixir/phoenix/setup.sh

+ 1 - 1
frameworks/Elixir/phoenix/setup.sh

@@ -12,4 +12,4 @@ mix local.rebar --force
 mix deps.get --force --only prod
 mix compile --force
 
-elixir --erl "+K true" --detached -S mix phoenix.server
+elixir --detached -S mix phoenix.server