Extend number of work threads to 8

This commit is contained in:
Simon Fels 2016-11-08 07:39:21 +01:00
commit c4e1e291ac

View file

@ -35,7 +35,7 @@ class Runtime : public DoNotCopyOrMove,
public std::enable_shared_from_this<Runtime> {
public:
// Our default concurrency setup.
static constexpr const std::uint32_t worker_threads = 2;
static constexpr const std::uint32_t worker_threads = 8;
// create returns a Runtime instance with pool_size worker threads
// executing the underlying service.