RingBuf overflow? #182
Replies: 2 comments
-
Hello, the ring buffer can't overflow but a new entry can override an older entry. When a ring buffer is full, we're left with two choices:
The 2nd option in my opinion is the better one and that's the reason why there are no size checks. |
Beta Was this translation helpful? Give feedback.
-
We can at least increase the ring buffer size via Server.WriteBufferCount. |
Beta Was this translation helpful? Give feedback.
-
In Push method of RingBuf, it didn't check the size of buf?
Is it possible that the buf overflow?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions