如果使用队列锁,那么我可以优化“多加/重新”,因为我可以锁一次,然后添加多次.
一般情况下更快 – ConcurrentQueue或Queue锁定和差异有多大?当然,ConcurrentQueue是最显着的方式,但是我不希望在HFT交易应用程序中使用这个方法,因此我不希望失去很多性能.
解决方法 从 C# in a Nutshell:The concurrent stack,queue,and bag classes are implemented
internally with linked Lists. This makes them less memory efficIEnt
than the nonconcurrentStack
andQueue
classes,but better for
concurrent access because linked Lists are conductive to lock-free or
low-lock implementations.
换句话说,很难定义一般的情况,更不要说预测性能差异是什么.
这取决于收集的大小和使用情况.性能可以预期更好,给予足够的并发访问,内存消耗将会更差.
总结以上是内存溢出为你收集整理的c# – ConcurrentQueue vs Queue lock的性能全部内容,希望文章能够帮你解决c# – ConcurrentQueue vs Queue lock的性能所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)