Use Thread-local Storage to Reduce Synchronization
Posted
on Code Project
See other posts from Code Project
Published on Wed, 02 Jun 2010 19:52:00 GMT
Indexed on
2010/06/02
19:56 UTC
Read the original article
Hit count: 175
Filed under:
Synchronization is often an expensive operation that can limit the performance of a multithreaded program. Using thread-local data structures instead of data structures shared by the threads can reduce synchronization in certain cases, allowing a program to run faster.
© Code Project or respective owner