Performance Optimisation
Prefer strconv over fmt
When converting primitives to/from strings, strconv
is faster than fmt
.
Avoid string-to-byte conversion
Do not create byte slices from a fixed string repeatedly. Instead, perform the conversion once and capture the result.
Prefer Specifying Container Capacity
Specify container capacity where possible in order to allocate memory for the container up front. This minimises subsequent allocations (by copying and resizing of the container) as elements are added.
Specifying Map Capacity Hints
Where possible, provide capacity hints when initialising maps with
make()
.Providing a capacity hint to
make()
tries to right-size the map at initialization time, which reduces the need for growing the map and allocations as elements are added to the map. Note that, unlike slices, map capacity hints do not guarantee complete, preemptive allocation, but are used to approximate the number of hashmap buckets required. Consequently, allocations may still occur when adding elements to the map, even up to the specified capacity.
Specifying Slice Capacity
Where possible, provide capacity hints when initializing slices with
make()
, particularly when appending.Unlike maps, slice capacity is not a hint: the compiler will allocate enough memory for the capacity of the slice as provided to
make()
, which means that subsequentappend()
operations will incur zero allocations (until the length of the slice matches the capacity, after which any appends will require a resize to hold additional elements).
Last updated