Is there a production ready lock-free queue or hash implementation in C++(是否有生产就绪的无锁队列或 C++ 中的哈希实现)
问题描述
我一直在谷歌上搜索 C++ 中的无锁队列.我找到了一些代码和一些试验 - 但没有任何我能够编译的.也欢迎使用无锁哈希.
I ve been googling quite a bit for a lock-free queue in C++. I found some code and some trials - but nothing that i was able to compile. A lock-free hash would also be welcome.
总结:到目前为止,我还没有肯定的答案.没有生产就绪"库,令人惊讶的是,现有的库都没有符合 STL 容器的 API.
SUMMARY: So far i have no positive answer. There is no "production ready" library, and amazingly none of the existent libraries complies to the API of STL containers.
推荐答案
从 1.53 开始,boost 提供了一个 一组无锁数据结构,包括队列、堆栈和单生产者/单消费者队列(即环形缓冲区).
As of 1.53, boost provides a set of lock free data structures, including queues, stacks and single-producer/single-consumer queues (i.e. ring buffers).
这篇关于是否有生产就绪的无锁队列或 C++ 中的哈希实现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否有生产就绪的无锁队列或 C++ 中的哈希实现
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01