stringintern

package
v0.0.0-...-44c758a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 23, 2024 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Intern

func Intern(x ...interface{})

Intern will recursively traverse one or more objects and collapse all strings that are identical to the same pointer, saving memory. Inputs must be pointer types. String map keys are not interned. The path to all fields must be exported. It is not possible to modify unexported fields in a safe way. Example usage:

var x = ... some complicated type with strings
stringintern.Intern(&x)

Warning: This is a potentially dangerous operation.

Extreme care must be taken that no pointers exist to other structures that should not be modified.
This method is not thread safe.  No other threads should be reading or writing to x while it is being interned.

It is safest to use this code for testing purposes to see how much memory can be saved by interning but then do the interning explicitly:

sizeBefore := memsize.DeepSize(&x)
stringintern.Intern(&x)
sizeAfter := memsize.DeepSize(&x)

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL