syncmap

package
v0.4.0 Latest Latest
Warning

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

Go to latest
Published: Dec 2, 2018 License: MPL-2.0 Imports: 3 Imported by: 0

Documentation

Overview

Package syncmap contains an implementation of the `gokv.Store` interface for a Go `sync.Map`.

Index

Constants

This section is empty.

Variables

View Source
var DefaultOptions = Options{}

DefaultOptions is an Options object with default values. MarshalFormat: JSON

Functions

This section is empty.

Types

type MarshalFormat added in v0.3.0

type MarshalFormat int

MarshalFormat is an enum for the available (un-)marshal formats of this gokv.Store implementation.

const (
	// JSON is the MarshalFormat for (un-)marshalling to/from JSON
	JSON MarshalFormat = iota
	// Gob is the MarshalFormat for (un-)marshalling to/from gob
	Gob
)

type Options added in v0.3.0

type Options struct {
	// (Un-)marshal format.
	// Optional (JSON by default).
	MarshalFormat MarshalFormat
}

Options are the options for the Go sync.Map store.

type Store

type Store struct {
	// contains filtered or unexported fields
}

Store is a gokv.Store implementation for a Go sync.Map.

func NewStore

func NewStore(options Options) Store

NewStore creates a new Go sync.Map store.

func (Store) Close added in v0.4.0

func (m Store) Close() error

Close closes the store. When called, the store's pointer to the internal Go map is set to nil, leading to the map being free for garbage collection.

func (Store) Delete added in v0.3.0

func (m Store) Delete(k string) error

Delete deletes the stored value for the given key. Deleting a non-existing key-value pair does NOT lead to an error. The key must not be "".

func (Store) Get

func (m Store) Get(k string, v interface{}) (found bool, err error)

Get retrieves the stored value for the given key. You need to pass a pointer to the value, so in case of a struct the automatic unmarshalling can populate the fields of the object that v points to with the values of the retrieved object's values. If no value is found it returns (false, nil). The key must not be "" and the pointer must not be nil.

func (Store) Set

func (m Store) Set(k string, v interface{}) error

Set stores the given value for the given key. Values are automatically marshalled to JSON or gob (depending on the configuration). The key must not be "" and the value must not be nil.

Jump to

Keyboard shortcuts

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