Thread-local Storage
Learn about the thread-local storage concurrency pattern.
We'll cover the following...
Thread-local storage refers to the data that are specific to the thread. The data will seem like global static storage, but in essence, each copy will be created for each thread at the time of thread creation.
Essentially, thread-local storage enables a global state within a thread.
Typical use cases
Here are ...