本文介绍了在C ++中是否有生产就绪无锁队列或哈希实现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在Google上有一个无锁队列。我发现了一些代码和一些试验 - 但没有什么,我能够编译。也欢迎使用无锁哈希。

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 ++中是否有生产就绪无锁队列或哈希实现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 03:44
查看更多