Skip to content

Commit

Permalink
modify reademe
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Dec 9, 2016
1 parent ed24112 commit 2dca8b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ C代码实现见:https://github.com/dodng/fast_ring_queue

###3.3 入队速度<出队速度

在这种情况下,队列“读取”速度>“写入”速度,这种情况说明程序出队处理元素的速度很快,这是比较好的情况,唯一不足的是读取队列的时候可能经常会轮询队列是否有新的元素,造成cpu占用过高。
在这种情况下,队列“读取”速度>“写入”速度,这种情况说明程序出队处理元素的速度很快,这是比较好的情况,唯一不足的是读取队列的时候可能经常会轮询队列是否有新的元素,造成cpu占用过高。



Expand All @@ -82,6 +82,6 @@ C代码实现见:https://github.com/dodng/fast_ring_queue

##5.实际测试效果

在CentOS 5.5 (cpu每核主频1200MHz)设备上简单测试了一下。环形队列大小为10000,元素数据大小为4字节,每秒可以写入并读取的元素是250万左右,即250pps.
在CentOS 5.5 (cpu每核主频1200MHz)设备上简单测试了一下。环形队列大小为10000,元素数据大小为4字节,每秒可以写入并读取的元素是250万左右,即250pps.

C代码实现见:https://github.com/dodng/fast_ring_queue
C代码实现见:https://github.com/dodng/fast_ring_queue

0 comments on commit 2dca8b0

Please sign in to comment.