1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
# Changelog
## Version 2
2.0.3
* Add `IntoIter` to `Bag`.
2.0.2
* Enhance the wait queue implementation.
2.0.1
* Minor code cleanup.
2.0.0
* New API.
### API update
- `*::Visitor` -> `*::Iter`.
- `*::Accessor` -> `*::IterMut`.
- `ebr::Arc` -> `ebr::Shared`.
- `ebr::Arc::get_ref_with` -> `ebr::Shared::get_guarded_ref`.
- `ebr::Arc::ptr` -> `ebr::Shared::get_guarded_ptr`.
- `ebr::Arc::release_drop_in_place` -> `ebr::Shared::drop_in_place`.
- `ebr::AtomicArc` -> `ebr::AtomicShared`.
- `ebr::AtomicArc::get_arc` -> `ebr::AtomicShared::get_shared`.
- `ebr::AtomicArc::try_into_arc` -> `ebr::AtomicShared::into_shared`.
- `ebr::AtomicOwned::try_into_owned` -> `ebr::AtomicOwned::into_owned`.
- `ebr::Barrier` -> `ebr::Guard`.
- `ebr::Owned::get_ref_with` -> `ebr::Owned::get_guarded_ref`.
- `ebr::Owned::ptr` -> `ebr::Owned::get_guarded_ptr`.
- `ebr::Ptr::as_raw` -> `ebr::Ptr::as_ptr`.
- `ebr::Ptr::get_arc` -> `ebr::Ptr::get_shared`.
- `*::first_occupied_entry*` -> `*::first_entry*`.
- `HashIndex::read` -> `HashIndex::peek_with`.
- `HashIndex::read_with` -> `HashIndex::peek`.
- `Queue::peek` -> `Queue::peek_with`.
- `Queue::peek_with` -> `Queue::peek`.
- `Stack::peek` -> `Stack::peek_with`.
- `Stack::peek_with` -> `Stack::peek`.
- `TreeIndex::read` -> `TreeIndex::peek_with`.
- `TreeIndex::read_with` -> `TreeIndex::peek`.
- Remove `HashMap::upsert*`: superseded by `hash_map::Entry::and_modify` and `hash_map::Entry::or_insert`.
```rust
use scc::HashMap;
let hashmap: HashMap<u64, u32> = HashMap::default();
// hashmap.upsert(1, || 2, |_, v| *v = 3);
hashmap.entry(1).and_modify(|v| { *v = 3 }).or_insert(2);
```
- Remove `HashIndex::modify*` and `HashIndex::update*`: superseded by `HashIndex::entry*`, `HashIndex::get*`.
```rust
use scc::HashIndex;
let hashindex: HashIndex<u64, u32> = HashIndex::default();
assert!(hashindex.insert(1, 1).is_ok());
// hashindex.modify(&1, |_, v| Some(Some(2)));
if let Some(mut o) = hashindex.get(&1) {
o.update(2);
};
// unsafe { hashindex.update(&1, |_, v| { *v = 3; true } ); }
if let Some(mut o) = hashindex.get(&1) {
unsafe { *o.get_mut() = 3; }
};
```
- Remove `Hash*::for_each*`: superseded by `HashMap::retain*`.
```rust
use scc::HashMap;
let hashmap: HashMap<u64, u32> = HashMap::default();
assert!(hashmap.insert(1, 1).is_ok());
// hashmap.for_each(|_, v| { *v = 2; });
hashmap.retain(|_, v| { *v = 2; true });
```
- `Hash*::clear*`, `Hash*::prune*`, and `Hash*::retain*` return `()`.
## Version 1
1.9.1
* API update: add the `hash_index::Entry` API.
1.9.0
* API update: add `ebr::{AtomicOwned, Owned}` for non-reference-counted instances.
1.8.3
* API update: add `ebr::AtomicArc::compare_exchange_weak`.
1.8.2
* API update: [#107](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/107) add `HashMap::{prune, prune_async}`.
1.8.1
* API update: add `HashCache::{contains, contains_async}`.
1.8.0
* API update: overhaul `hash_cache::Entry` API; values can be evicted through `hash_cache::Entry` API.
1.7.3
* Add `Bag::pop_all` and `Stack::pop_all`.
1.7.2
* Add `HashCache::{any, any_async, for_each, for_each_async, read, read_async}`.
1.7.1
* Add `Serde` support to `HashCache`.
1.7.0
* Optimize `Hash*::update*` and `HashIndex::modify*`.
* API update 1: [#94](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/94) a _WORK IN PROGRESS_ `HashCache` minimal implementation.
* API update 2: add `HashMap::{get, get_async}` returning an `OccupiedEntry`.
* API update 3: add `Hash*::capacity_range`.
1.6.3
* API update 1: [#96](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/96) - add `HashIndex::{modify, modify_async}`, special thanks to [novacrazy](https://github.com/novacrazy).
* API update 2: `Hash*::default()` for any `H: BuildHasher + Default`, by [novacrazy](https://github.com/novacrazy).
1.6.2
* API update: add `HashIndex::{retain, retain_async}`.
1.6.1
* API update: add a mutable `Bag` iterator.
* Replace `compare_exchange` with `compare_exchange_weak` where spurious failures do not cost much.
* Fix an issue with `hash_map::Reserve::fmt` which printed superfluous information.
1.6.0
* API update 1: remove `ebr::Barrier::defer_incremental_execute` in favor of unwind-safety.
* API update 2: all the data structures except for `hash_map::OccupiedEntry` and `hash_map::VacantEntry` are now `UnwindSafe`.
* API update 3: export `linked_list::Entry` as `LinkedEntry`.
1.5.0
* API update: `HashMap::remove_if*` passes `&mut V` to the supplied predicate.
1.4.4
* Major `Hash*` performance boost: vectorize `Hash*` bucket loopup operations.
1.4.3
* Add `const ARRAY_LEN: usize` type parameter to `Bag`.
* Minor optimization.
1.4.2
* Optimize `TreeIndex::is_empty`.
* Update documentation.
1.4.1
* Add `hash_index::Reserve` and `HashIndex::reserve`.
* Add missing `H = RandomState` to several types.
* Add `const` to several trivial functions.
1.4.0
* **Fix a correctness issue with LLVM 16 (Rust 1.70.0)**.
* API update: `{Stack, Queue}::{peek*}` receive `FnOnce(Option<&Entry<T>>) -> R`.
* `RandomState` is now the default type parameter for `hash_*` structures.
* Remove explicit `Sync` requirements.
* Remove `'static` lifetime constraints from `Bag`, `LinkedList`, `Queue`, and `Stack`.
* Minor `Hash*` optimization.
1.3.0
* Add `HashMap::first_occupied_entry*` for more flexible mutable iteration over entries.
* Add `ebr::Arc::get_ref_with`.
* Implement `Send` for `hash_map::Entry` if `(K, V): Send`.
* `Hash*::remove*` methods may deallocate the entire hash table when they find the container empty.
1.2.0
* API update 1: `AtomicArc::update_tag_if` now receives `fetch_order`, and the closure can access the pointer value.
* API update 2: rename `hash_map::Ticket` `hash_map::Reserve`.
* `Hash*` do not allocate bucket arrays until the first write access.
* `Hash*::remove*` more aggressively shrinks the bucket array.
1.1.4 - 1.1.5
* Optimize `Hash*::is_empty`.
* Remove unnecessary lifetime constraints on `BuildHasher`.
1.1.3
* Fix [#86](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/86) completely.
* EBR garbage instances and the garbage collector instance of a thread is now deallocated immediately when the thread exits if certain conditions are met.
1.1.2
* Fix [#86](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/86).
1.1.1
* Fix a rare problem with `HashMap` and `HashSet` violating lifetime contracts on drop.
1.1.0
* Remove `'static` bounds from `HashMap`, `HashSet`, and `ebr::{Arc, AtomicArc}`.
1.0.9
* Add `HashMap::{entry, entry_async}`.
1.0.8
* More robust panic handling.
* Doc update.
1.0.7
* Minor performance optimization.
* Identified a piece of blocking code in `HashIndex::read`, and make it non-blocking.
1.0.6
* Optimize `TreeIndex` for low-entropy input patterns.
1.0.5
* Add `{HashMap, HashSet}::{any, any_async}` to emulate `Iterator::any`.
* Implement `PartialEq` for `{HashMap, HashSet, HashIndex, TreeIndex}`.
* Add `serde` support to `{HashMap, HashSet, HashIndex, TreeIndex}`.
* Remove the unnecessary `Send` bound from `TreeIndex`.
1.0.4
* Minor `Hash*` optimization.
1.0.3
* Major `TreeIndex` performance improvement.
* Add `From<ebr::Tag> for u8`.
1.0.2
* Optimize `TreeIndex`.
1.0.1
* Add `Stack`.
* API update 1: remove `Bag::clone`.
* API update 2: replace `Queue::Entry` with `<linked_list::Entry as LinkedList>`.
* Optimize `Bag`.
* Fix memory ordering in `Bag::drop`.
1.0.0
* Implement `Bag`.
## Version 0
0.12.4
* Remove `scopeguard`.
0.12.3
* Minor `ebr` optimization.
0.12.2
* `Hash*::remove*` accept `FnOnce`.
0.12.1
* `HashMap::read`, `HashIndex::read`, and `HashIndex::read_with` accept `FnOnce`.
* Proper optimization for `T: Copy` and `!needs_drop::<T>()`.
0.12.0
* More aggressive EBR garbage collection.
0.11.5
* Fix [#84](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/84) completely.
* Micro-optimization.
0.11.4
* Optimize performance for `T: Copy`.
0.11.3
* Fix [#84](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/84).
* 0.11.2 and any older versions have a serious correctness problem with Rust 1.65.0 and newer.
0.11.2
* `HashIndex` and `HashMap` cleanup entries immediately when the instance is dropped.
0.11.1
* Adjust `HashIndex` parameters to suppress latency spikes.
0.11.0
* Replace `ebr::Barrer::reclaim` with `ebr::Arc::release`.
* Rename `ebr::Arc::drop_in_place` `ebr::Arc::release_drop_in_place`.
* Implement `ebr::Barrier::defer`.
* Make `ebr::Collectible` public.
0.10.2
* Fix [#82](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/82).
* Implement `ebr::Barrier::defer_incremental_execute`.
0.10.1
* Significant `HashMap`, `HashSet`, and `HashIndex` insert performance improvement by segregating zero and non-zero memory regions.
0.9.1
* `HashMap`, `HashSet`, and `HashIndex` performance improvement.
0.9.0
* API update: `HashMap::new`, `HashIndex::new`, and `HashSet::new`.
* Add `unsafe HashIndex::update` for linearizability.
0.8.4
* Implement `ebr::Barrier::defer_execute` for deferred closure execution.
* Fix [#78](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/78).
0.8.3
* Fix `ebr::AtomicArc::{clone, get_arc}` to never return a null pointer if the `ebr::AtomicArc` is always non-null.
0.8.2
* Fix [#77](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/77).
0.8.1
* Implement `Debug` for container types.
0.8.0
* Add `ebr::suspend` which enables garbage instances in a dormant thread to be reclaimed by other threads.
* Minor `Queue` API update.
* Reduce `HashMap` memory usage.