-
Type:
Improvement
-
Resolution: Fixed
-
Priority:
Major - P3
-
Affects Version/s: None
-
Component/s: Querying
-
Fully Compatible
-
Query 2020-02-10
-
0
-
None
-
None
-
None
-
None
-
None
-
None
-
None
If we buffer and sort WorkingSetMembers directly, then we pay for moving these objects during the std::swap()s performed by the Sorter's underlying call to std::stable_sort(). If we instead sort pointers to WorkingSetMembers, then these swaps are cheaper. This has been shown to improve the throughput of our blocking sort benchmark (Aggregation.Sort).