0

What is (are) modern frameworks for async IO, threading, etc. on C++?

I'am familiar with ACE but it was long ago, what is the the weapon of choice now?

4

3 回答 3

2

BOOST 库呢?它似乎是目前最普遍的选择。

它具有内置的线程ASYNC-IO以及许多更多的库。

于 2012-04-04T12:29:14.653 回答
1

Poco C++ 框架及其网络库: http: //pocoproject.org/documentation/index.html

于 2012-04-04T12:45:48.683 回答
0

试试Pulsar 服务器框架。主要好处是它建立在 libuv 网络库(由 node.js 使用)之上,该库使用基于事件循环的异步 I/O。框架

  1. 它是完全可扩展的。随着用户群的增加,您可以添加服务器。

  2. 它旨在与服务器场一起使用。

  3. 高度可配置且易于使用

目前它已经为 Windows x64 服务器构建。

于 2018-07-04T06:29:47.917 回答