You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug ConfigOptions::new and ConfigOptions::from_env grow their internal HashMap during creation even though they know that size beforehand.
To Reproduce
Create ConfigOption very often, attach a sampling profiler.
Expected behavior
Be efficient, use HashMap::with_capacity.
Additional context
Nothing.
The text was updated successfully, but these errors were encountered:
Describe the bug
ConfigOptions::new
andConfigOptions::from_env
grow their internalHashMap
during creation even though they know that size beforehand.To Reproduce
Create
ConfigOption
very often, attach a sampling profiler.Expected behavior
Be efficient, use
HashMap::with_capacity
.Additional context
Nothing.
The text was updated successfully, but these errors were encountered: