Tagged Questions

2
votes
3answers
1k views

Implementing a fixed-size log file, or a circular buffer on disk

I checked this question, but it's not what I'm looking for. I'm trying to figure out how to cap a log file's size (say, 10MB), and as soon as it's hit, either: start writing to the beginning, ...
2
votes
6answers
1k views

CircularBuffer IDictionary in C#?

I need a CircularBuffer IDictionary. Can anyone point me to a good open source implementation. So a IDictionary that has a maximum capacity, say configured to 100 items, which when item 101 is added ...
0
votes
4answers
483 views

end pointer problem of a circular buffer

I'm using Visual c++. I'm trying to implement a circular buffer, this CB must handle a specific type of data...in fact, it's a structure data where we have some kind of raw data to be stored in a ...