Skip to content

Is the framework multi threaded

kytoo edited this page Jan 31, 2019 · 5 revisions

Is the framework multi-threaded?

The main logic execution is written in a single-threaded style, only the network library libevent and the actor model library Theron use multiple threads for their execution. As the result, we can write code in main logic execution without thread-lock to meet the highest performance and reduce your mental burden.

Clone this wiki locally