Commit f7f6f92e authored by Dominik Charousset's avatar Dominik Charousset

Tweak example INI file

parent 97e107db
; This file shows all possible parameters with defaults. ; This file shows all possible parameters with defaults.
; Values enclosed in <> are detected at runtime per default. ; Values enclosed in <> are detected at runtime unless defined by the user.
; when using the default scheduler ; when using the default scheduler
[scheduler] [scheduler]
; accepted alternative: "work-sharing" ; accepted alternative: 'sharing'
policy="work-stealing" policy='stealing'
; configures whether the scheduler generates profiling output ; configures whether the scheduler generates profiling output
enable-profiling=false enable-profiling=false
; can be overriden to force a fixed number of threads ; can be overriden to force a fixed number of threads
max-threads=<detected at runtime> max-threads=<number of cores>
; configures the maximum number of messages actors can consume in one run ; configures the maximum number of messages actors can consume in one run
max-throughput=<numeric_limits<size_t>::max()> max-throughput=<infinite>
; measurement resolution in milliseconds (only if profiling is enabled) ; measurement resolution in milliseconds (only if profiling is enabled)
profiling-ms-resolution=100 profiling-ms-resolution=100
; output file for profiler data (only if profiling is enabled) ; output file for profiler data (only if profiling is enabled)
...@@ -20,5 +20,5 @@ profiling-output-file="/dev/null" ...@@ -20,5 +20,5 @@ profiling-output-file="/dev/null"
[middleman] [middleman]
; configures whether MMs try to span a full mesh ; configures whether MMs try to span a full mesh
enable-automatic-connections=false enable-automatic-connections=false
; accepted alternative: 'asio' (only when compiling CAF with ASIO)
network-backend='default'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment