Boosting Work Classes with a mini Object Pool
Work and processing classes are typically short-lived, created to perform one form of processing or another then freed. They can be simple collections, handle I/O of one kind of another, perform computations, pattern matching, etc.
When they’re used for simple workloads, their short-lived temporary nature can sometimes become a performance problem.
(more…)
DWScript SVN
In
Implementing an efficient worker thread pool in Windows can be achieved through the use of
The