In our application we have a class that produces characters, and another that consumes them. The current implementation dynamically allocates characters as they are produced (using new) and delete them (with delete) as they are consumed. This is all terribly slow, and I am looking at ways to replace that implementation to improve its performance.
The semantic I need is that of the standard class queue: push at the front, pop at the back. The default implementation uses a deque IIRC. deque is typically implemented using "blocks" or "chunks" of memory, so I expect far less calls to the OS memory allocator, and a significant speed-up, with little additional memory usage.
However, since the data queued is characters (possibly wide characters), an alternative would be to use the standard input/output stream class, namely the character stream stringstream. AFAIK, their behaviour is queue-like too.
Is their a better choice a priori? Would both classes have similar allocation patterns? I can try and measure performance of both, but perhaps it doesn't really matter and either would be good enough. In that case, which would be easiest/safest to use?
a secondary matter is concurrency between the producer and the consumer. I can restrict access to be sequential (on the same thread), but a thread-safe implementation is likely to be beneficial performance-wise with current multi-core hardware.
Thanks for your wisdom before I dive in and start coding.
std::deque, given that it's designed specifically to handle this kind of case. The other possibility would be a fixed-size queue that simply blocks when it's full. With appropriate sizing, blocking is often actually desirable (if one side gets too far behind, blocking can give it more CPU time so it gets a chance to catch up). – Jerry Coffin Oct 3 '12 at 1:13std::dequehas a contiguous memory requirement. In fact, Josuttis states the opposite. – Jean-Denis Muys Oct 3 '12 at 9:27