I use a Concurrency::concurrent_unordered_map successfully in my program (this is an implementation made by Microsoft). This is needed because multiple inserts/updates for elements and quite rare deletes are performed in a concurrent manner.
I know that this container (like all other concurrent containers) provides an unsafe erase() method - for erasing a node.
What would you think would be the best approach to make the erase process also thread safe ? This happens rarely as I've said (only because user intervention) and I would not like so much to have a critical section that has to be entered every time I perform a search on the container (or for that matter any other operations like iterator traversal and node updates). What do you think? I was also thinking on an event based mechanism but I don't see how this is applicable here.
sync_erase(), and guarantee that clients only call that function. Then you put the mutex only in there. – Kerrek SB Nov 17 '11 at 20:02