-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
353 lines (352 loc) · 13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
---
layout: default
title: The C++ Actor Framework
nav-type: home
---
<!-- Logo and Heading -->
<div class="row text-center" style="padding-top: 6em">
<p style="padding-top: 1em">
<img width="400" src="/static/img/caf-logo.png">
</p>
<p>
<h1 style="padding-top: 20pt; color: #004358">
<b>CAF</b><br>
The C++ Actor Framework
</h1>
</p>
</div>
<!-- Intro Block -->
<div style="width: 100%; background-color: #004358; color: white; margin-top: 3em; padding: 2em 0 2em 0">
<div class="row text-center">
<div class="small-2 columns">
</div>
<div class="small-8 columns">
<h1><b>
<img src="/static/img/target.png" style="width: 1em">
In a Nutshell
</b></h1>
<p>
CAF offers a high-level programming environment based on the
<a href="https://en.wikipedia.org/wiki/Actor_model"
target="_blank">Actor Model</a> of computation combined with an
efficient, native runtime environment that lets you build scalable
applications. For example,
<a href="https://blog.actor-framework.org/2019-04/spotlight-lumicks"
target="_blank">software for molecular research</a>,
<a href="https://blog.actor-framework.org/2015-11/spotlight-bro"
target="_blank">communication backends for distributed network
security monitoring</a> or even
<a href="https://blog.actor-framework.org/2014-12/spotlight-dual-universe"
target="_blank">massive multiplayer online games</a>.
</p>
<p>
The framework is open source, available on
<a href="https://github.com/actor-framework/actor-framework" target="_blank">GitHub</a>
under the 3-Clause BSD License, and in active development since 2011.
Professional support, training, and consulting are available from
<a href="https://www.interance.io" target="_blank">Interance</a>, the
company behind CAF.
</p>
</div>
<div class="small-2 columns">
</div>
</div>
</div>
<!-- Features Block -->
<div class="row" style="padding-top: 2em" id="features">
<div class="small-2 columns">
</div>
<div class="small-8 columns">
<div class="row">
<div class="small-12 columns">
<p><h1>Scalable Abstractions</h1></p>
</div>
<div class="small-12 columns">
<div style="display: flex; column-gap: 2em">
<div style="min-width: 100px">
<img src="/static/img/boxes.png" width="100">
</div>
<div>
<p>
Network-transparent messaging combined with a shared nothing
architecture enables actors to run concurrently without risking
data races. Once applications outgrow a single machine, CAF
enables users to scale out seamlessly by distributing actors
across the network.
</p>
<p>
Actors naturally thrive in an ever-changing environment and scale
horizontally just as easily as vertically. This makes actors the
perfect fit for building applications that grow and shrink
dynamically with user demand.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="small-12 columns">
<p><h1>Native Execution</h1></p>
</div>
<div class="small-12 columns">
<div style="display: flex; column-gap: 2em">
<div style="min-width: 100px">
<img src="/static/img/tachometer.png" width="100">
</div>
<div>
<p>
Leveraging C++ enables us to tightly control memory layout as well
as actor scheduling. As a result, CAF actors consist of only a few
hundred bytes and the messaging layer reclaims memory as soon as
possible.
</p>
<p>
Whether building large-scale applications that live in the cloud,
or IoT application that run on resource-constrained devices, CAF
users can rely on a low memory footprint and fast execution thanks
to a minimal runtime overhead.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="small-12 columns">
<p><h1>Resilient Design</h1></p>
</div>
<div class="small-12 columns">
<div style="display: flex; column-gap: 2em">
<div style="min-width: 100px">
<img src="/static/img/shield.png" width="100">
</div>
<div>
<p>
Distributed systems have many sources of errors. Writing software
for the real world means to anticipate partial failures and to
gracefully respond to hardware, software and network errors. CAF
cannot make crashes and bugs go away, but it equips you with the
tools to manage them.
</p>
<p>
Actor-based design organizes applications into sub-systems with
failover strategies that allow forming supervision trees. These
techniques proved themselves in practice time and time again for
building reliable, fault tolerant systems.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="small-2 columns">
</div>
</div>
<!-- Community Block -->
<div style="width: 100%; background-color: #004358; color: white; margin-top: 3em; padding: 2em 0 2em 0" id="community">
<div class="row text-center">
<div class="small-12 columns">
<h1><b>
<img src="/static/img/group.png" style="width: 1em">
Community
</b></h1>
</div>
</div>
<div class="row" style="margin-top: 2em">
<div class="medium-6 columns">
<h2>
<img src="/static/img/github.png" style="width: 1em">
GitHub
</h2>
<p>
Our main repository at
<a href="https://github.com/actor-framework/actor-framework"
target="_blank">github.com/actor-framework/actor-framework</a>
is where the CAF community comes together to collaborate on the
project.
</p>
<p>
Whether you found a bug, have an idea for an improvement, want to
submit patches, or simply want to stay up-to-date with ongoing
developments: we are always looking forward to welcome new
developers!
</p>
</div>
<div class="medium-6 columns">
<h2>
<img src="/static/img/twitter.png" style="width: 1em">
Twitter
</h2>
<p>
Never miss a release or other important updates by following
<a href="https://twitter.com/actor_framework"
target="_blank">@actor_framework</a> on Twitter! Likes and
retweets that help us spread the word are much appreciated!
</p>
<p>
Our Twitter handle is managed directly by the maintainers of the
open source project, so Twitter is also a great place to get in
touch with the people behind the framework.
</p>
</div>
</div>
<div class="row" style="margin-top: 2em">
<div class="medium-6 columns">
<h2>
<img src="/static/img/chat.png" style="width: 1em">
Messaging
</h2>
<p>
Come and say hi on
<a href="https://gitter.im/actor-framework/chat"
target="_blank">gitter.im/actor-framework</a>! Our chat room is a
great place to get in touch with other CAF users and to ask quick
questions.
</p>
<p>
Becoming a member of our user mailing list at
<a href="https://groups.google.com/d/forum/actor-framework"
target="_blank">[email protected]</a>
connects you to CAF users around the world for sharing your
thoughts, asking questions and participating in online discussions
surrounding CAF.
</p>
</div>
<div class="medium-6 columns">
<h2>
<img src="/static/img/research.png" style="width: 1em">
Research
</h2>
<p>
Many years of research at the
<a href="http://inet.haw-hamburg.de"
target="_blank">INET working group</a>
of the
<a href="https://www.haw-hamburg.de/en/"
target="_blank">Hamburg University of Applied Sciences</a>
guided the development of CAF. When using CAF in a scientific
context, please
<a href="https://github.com/actor-framework/actor-framework#scientific-use"
target="_blank">cite one of our primary publications</a>.
</p>
<p>
The INET working group is always open for joint research projects or
other forms of collaborations. Please contact
<a href="https://inet.haw-hamburg.de/members/schmidt"
target="_blank">Thomas C. Schmidt</a> for questions related to
formal project establishment.
</p>
</div>
</div>
</div>
<!-- References Block -->
<div class="row" style="padding-top: 2em" id="users">
<div class="small-12 columns text-center">
<h1><b>
<img src="/static/img/globe.png" style="width: 1em">
Our Users Include
</b></h1>
</div>
</div>
<div class="row" style="padding-top: 2em">
<div class="small-12 columns text-center">
<a href="http://www.atscom.it/sitowp/en/" target="_blank">
<img style="height: 80px; margin: 2em" src="/static/img/ats.png">
</a>
<a href="https://corelight.com" target="_blank">
<img style="height: 80px; margin: 2em" src="/static/img/corelight.png">
</a>
<a href="https://www.dneg.com/xstudio" target="_blank">
<img style="height: 80px; margin: 2em" src="/static/img/dneg.png">
</a>
<a href="https://glvi.de" target="_blank">
<img style="height: 80px; margin: 2em" src="/static/img/glvi.png">
</a>
<a href="https://lumicks.com" target="_blank">
<img style="height: 80px; margin: 2em" src="/static/img/lumicks.png">
</a>
<a href="https://www.dualuniverse.game" target="_blank">
<img style="height: 80px; margin: 2em" src="/static/img/novaquark.png">
</a>
<a href="https://www.sparklingrocks.it" target="_blank">
<img style="height: 80px; margin: 2em" src="/static/img/sparkling-rocks.png">
</a>
<a href="https://tenzir.com/" target="_blank">
<img style="height: 80px; margin: 2em" src="/static/img/tenzir.png">
</a>
</div>
</div>
<!-- Getting Started Block -->
<div style="width: 100%; background-color: #004358; color: white; margin-top: 3em; padding: 2em 0 2em 0" id="getting-started">
<div class="row text-center">
<div class="small-12 columns">
<h1><b>
<img src="/static/img/rocket.png" style="width: 1em">
Getting Started
</b></h1>
</div>
</div>
<div class="row" style="margin-top: 2em">
<div class="medium-6 columns">
<h2>
<img src="/static/img/examples.png" style="width: 1em">
Examples
</h2>
<p>
The
<a href="https://github.com/actor-framework/actor-framework/tree/master/examples"
target="_blank">examples folder</a> in the main repository
contains many small applications showcasing selected features of
the framework. Of course, the folder also contains the obligatory
<a href="https://github.com/actor-framework/actor-framework/blob/master/examples/hello_world.cpp"
target="_blank">Hello World</a>.
</p>
<p>
We strongly recommend looking at the message passing examples first
to get an initial feeling for the framework. Afterwards, the
remoting examples will help you to distribute your CAF applications.
</p>
</div>
<div class="medium-6 columns">
<h2>
<img src="/static/img/manual.png" style="width: 1em">
Documentation
</h2>
<p>
The
<a href="https://actor-framework.readthedocs.io/en/stable"
target="_blank">user manual</a> discusses CAF feature by
feature and highlights selected components such as the scheduler.
The introduction chapter also explains terminology and concepts we
use throughout all of our resources.
</p>
<p>
Complementary to the user manual, our
<a href="/doxygen/">Doxygen documentation</a> contains details on all
public API classes and functions.
</p>
</div>
</div>
<div class="row" style="margin-top: 2em">
<div class="medium-3 columns"> </div>
<div class="medium-6 columns">
<h2>
<img src="/static/img/caf-logo-white.png" style="width: 1em">
Support
</h2>
<p>
Are you considering CAF for your next software project? Get professional
support directly from the creators and maintainers of CAF at
<a href="https://www.interance.io" target="_blank">interance.io</a>!
</p>
<p>
We offer a variety of services to help you get the most out of CAF.
Including support contracts, consulting, and training.
</p>
</div>
<div class="medium-3 columns"> </div>
</div>
</div>