gpt4 book ai didi

c++ - 将 boost::asio 线程池用于通用任务

转载 作者:可可西里 更新时间:2023-11-01 16:36:27 25 4
gpt4 key购买 nike

this blog我找到了一个关于如何使用 boost::asio 创建简单线程池的非常简洁的示例。我基本上想像这样使用它:

#include <thread>
#include <functional>
#include <boost/asio.hpp>

int main ( int argc, char* argv[] ) {
asio::io_service io_service;
asio::io_service::work work(io_service);

std::vector<std::thread> threadPool;

for(size_t t = 0; t < std::thread::hardware_concurrency(); t++){
threadPool.push_back(thread(std::bind(&asio::io_service::run, &io_service)));
}

io_service.post(std::bind(an_expensive_calculation, 42));
io_service.post(std::bind(a_long_running_task, 123));

//Do some things with the main thread

io_service.stop();
for(std::thread& t : threadPool) {
t.join();
}
}

据我所知,Boost::asio 主要用于网络 IO。但是,我主要想将它用于通用功能。并发问题将使用 asio::io_service::strand 来解决。

所以我的问题是:即使我的程序不使用网络 IO,创建这样的线程池是否是个好主意?与其他线程池实现相比,是否有明显的性能损失?如果是这样,是否有更好的实现也同样简洁?

最佳答案

Boost.Asio 不仅仅用于网络编程,参见 reference documentation .它对诸如

之类的东西有广泛的支持
  • 基于时间的操作(deadline_timer)
  • 信号处理
  • 特定于平台的操作,例如 posix 流和 Windows 句柄

我还在多个应用程序中将它用于其他目的。一个例子是一个线程池,用于为可能长时间运行的阻塞数据库操作提供服务,同时为应用程序提供异步接口(interface)。 Boost.Asio 确实是一个非常强大的库。将它用于您建议的通用线程池可以正常工作。

关于c++ - 将 boost::asio 线程池用于通用任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14265676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com