使用 Boost 库锁定/互斥连接/消息
我正在尝试使用 boost 库学习锁定/互斥的东西,但是我从互联网上找到的所有内容都太抽象或复杂。
你们能给我推荐一些容易理解的教程吗?谢谢。
我正在做一个项目。服务器-客户端架构。
服务器可以接收来自客户端的消息或向客户端发送消息。服务器还可以使用多线程发送消息。
我相信我必须进行线程同步来处理多个线程以通过同一连接发送消息,对吗?
你们能给我一个简单的伪代码片段吗?
I'm trying to learn the lock/mutex stuff using boost library, but all that I found from the internet is too abstract or complicated.
Would you guys recommend me some tutorials, which are easy to understand? Thanks.
I'm working on a project. Server-Client architecture.
The server can receive messages from the client or send messages to client. The server can also send messages using multiple threads.
I believe that I have to do thread synchronization to handle multiple threads for sending messages via the same connection, right?
Can you guys give me a simple pseudo code snippet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
跳过互斥体和线程,阅读Boost.Asio 如果您正在设计客户端服务器架构。特别是,研究它通过并发性促进的异步设计,而无需显式使用线程。
Skip mutexes and threads, read about Boost.Asio if you are designing a client server architecture. Particularly, study the asynchronous design that it promotes with concurrency without the explicit use of threads.