Concurrent Hash Table

Let's look at the design and implementation of a concurrent hash table.

We'll cover the following...

Let’s end this chapter with a simple and widely applicable concurrent data structure, the hash table. Let’s focus on a simple hash table that does not resize. A little more work is required to handle resizing, which is ...