-
Type: Improvement
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: None
-
None
-
Catalog and Routing
-
Fully Compatible
-
CAR Team 2024-04-01
Currently, the CSS map is structured as a StringMap, which means that all lookups need to incur data copy due to serialisation, which gets thrown-out immediately after the lookup.
If it was structured as std::unordered_map<NamespaceString, ...>, there will be no need for this copy.