Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
a1ff8d23
Commit
a1ff8d23
authored
Jun 20, 2018
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update example INI file
parent
ad53b9f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
14 deletions
+15
-14
examples/caf-application.ini
examples/caf-application.ini
+15
-14
No files found.
examples/caf-application.ini
View file @
a1ff8d23
...
@@ -12,7 +12,7 @@ max-threads=<number of cores>
...
@@ -12,7 +12,7 @@ max-threads=<number of cores>
; maximum number of messages actors can consume in one run
; maximum number of messages actors can consume in one run
max-throughput
=
<infinite>
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-
resolution
=
100ms
; output file for profiler data (only if profiling is enabled)
; output file for profiler data (only if profiling is enabled)
profiling-output-file
=
"/dev/null"
profiling-output-file
=
"/dev/null"
...
@@ -26,12 +26,12 @@ aggressive-steal-interval=10
...
@@ -26,12 +26,12 @@ aggressive-steal-interval=10
moderate-poll-attempts
=
500
moderate-poll-attempts
=
500
; frequency of steal attempts during moderate polling
; frequency of steal attempts during moderate polling
moderate-steal-interval
=
5
moderate-steal-interval
=
5
; sleep interval
in microseconds
between poll attempts
; sleep interval between poll attempts
moderate-sleep-duration
=
50
moderate-sleep-duration
=
50
us
; frequency of steal attempts during relaxed polling
; frequency of steal attempts during relaxed polling
relaxed-steal-interval
=
1
relaxed-steal-interval
=
1
; sleep interval
in microseconds
between poll attempts
; sleep interval between poll attempts
relaxed-sleep-duration
=
10
000
relaxed-sleep-duration
=
10
ms
; when loading io::middleman
; when loading io::middleman
[middleman]
[middleman]
...
@@ -45,17 +45,18 @@ app-identifier=""
...
@@ -45,17 +45,18 @@ app-identifier=""
; maximum number of consecutive I/O reads per broker
; maximum number of consecutive I/O reads per broker
max-consecutive-reads
=
50
max-consecutive-reads
=
50
; heartbeat message interval in ms (0 disables heartbeating)
; heartbeat message interval in ms (0 disables heartbeating)
heartbeat-interval
=
0
heartbeat-interval
=
0ms
; configures whether the MM detaches its internal utility actors, setting
; configures whether the MM attaches its internal utility actors to the
; this to false allows fully deterministic execution in unit tests
; scheduler instead of dedicating individual threads (needed only for
detach-utility-actors
=
true
; deterministic testing)
attach-utility-actors
=
false
; configures whether the MM starts a background thread for I/O activity,
; configures whether the MM starts a background thread for I/O activity,
; setting this to
fals
e allows fully deterministic execution in unit test and
; setting this to
tru
e allows fully deterministic execution in unit test and
; requires the user to trigger I/O manually
; requires the user to trigger I/O manually
detach-multiplexer
=
tru
e
manual-multiplexing
=
fals
e
;
enable or disable communication via the TCP transport protocol
;
disables communication via TCP
enable-tcp
=
tru
e
disable-tcp
=
fals
e
; enable
or disable communication via the UDP transport protocol
; enable
communication via UDP
enable-udp
=
false
enable-udp
=
false
; when compiling with logging enabled
; when compiling with logging enabled
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment