I read the MSDN but didn't really understand it.
I believe the "Set" == "Remove" + "Add" || "Add" if not Exists (Atomically)
It that correct ?
|
I read the MSDN but didn't really understand it. I believe the "Set" == "Remove" + "Add" || "Add" if not Exists (Atomically) It that correct ?
| |||
|
feedback
|
|
Add does nothing (returns false) if there is already a value for that key. Set does and insert or update, as necessary. Remove + Add would leave a gap in the middle when another thread querying that key would get no clue (Set does not; the swap is typically atomic); as such, while Set has the same end result as Remove + Add, the mechanism difference is important since it could impact other callers. For example of Add:
| |||
|
feedback
|