cmap

package module
v0.0.0-...-de02604 Latest Latest
Warning

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

Go to latest
Published: Feb 27, 2019 License: MIT Imports: 5 Imported by: 1

README

concurrent map Circle CI

As explained here and here, the map type in Go doesn't support concurrent reads and writes. concurrent-map provides a high-performance solution to this by sharding the map with minimal time spent waiting for locks.

Prior to Go 1.9, there was no concurrent map implementation in the stdlib. In Go 1.9, sync.Map was introduced. The new sync.Map has a few key differences from this map. The stdlib sync.Map is designed for append-only scenarios. So if you want to use the map for something more like in-memory db, you might benefit from using our version. You can read more about it in the golang repo, for example here and here

usage

Import the package:

import (
	"github.com/orcaman/concurrent-map"
)

go get "github.com/orcaman/concurrent-map"

The package is now imported under the "cmap" namespace.

example


	// Create a new map.
	m := cmap.New()

	// Sets item within map, sets "bar" under key "foo"
	m.Set("foo", "bar")

	// Retrieve item from map.
	if tmp, ok := m.Get("foo"); ok {
		bar := tmp.(string)
	}

	// Removes item under key "foo"
	m.Remove("foo")

For more examples have a look at concurrent_map_test.go.

Running tests:

go test "github.com/orcaman/concurrent-map"

guidelines for contributing

Contributions are highly welcome. In order for a contribution to be merged, please follow these guidelines:

  • Open an issue and describe what you are after (fixing a bug, adding an enhancement, etc.).
  • According to the core team's feedback on the above mentioned issue, submit a pull request, describing the changes and linking to the issue.
  • New code must have test coverage.
  • If the code is about performance issues, you must include benchmarks in the process (either in the issue or in the PR).
  • In general, we would like to keep concurrent-map as simple as possible and as similar to the native map. Please keep this in mind when opening issues.

license

MIT (see LICENSE file)

Documentation

Index

Constants

This section is empty.

Variables

View Source
var DEFAULT_SHARD_COUNT = 32

Functions

This section is empty.

Types

type ConcurrentMap

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

A "thread" safe map of type string:Anything. To avoid lock bottlenecks this map is dived to several (SHARD_COUNT) map shards.

func New

func New(sharedNum int) *ConcurrentMap

Creates a new concurrent map.

func (*ConcurrentMap) Count

func (m *ConcurrentMap) Count() int

Returns the number of elements within the map.

func (*ConcurrentMap) Get

func (m *ConcurrentMap) Get(key fmt.Stringer) (interface{}, bool)

Retrieves an element from map under given key.

func (*ConcurrentMap) GetOrSet

func (m *ConcurrentMap) GetOrSet(key fmt.Stringer, value interface{}) (newValue interface{}, isGet bool)

func (*ConcurrentMap) Has

func (m *ConcurrentMap) Has(key fmt.Stringer) bool

Looks up an item under specified key

func (*ConcurrentMap) IsEmpty

func (m *ConcurrentMap) IsEmpty() bool

Checks if map is empty.

func (*ConcurrentMap) Items

func (m *ConcurrentMap) Items() map[fmt.Stringer]interface{}

Returns all items as map[string]interface{}

func (*ConcurrentMap) Iter deprecated

func (m *ConcurrentMap) Iter() <-chan Tuple

Returns an iterator which could be used in a for range loop.

Deprecated: using IterBuffered() will get a better performence

func (*ConcurrentMap) IterBuffered

func (m *ConcurrentMap) IterBuffered() <-chan Tuple

Returns a buffered iterator which could be used in a for range loop.

func (*ConcurrentMap) IterCb

func (m *ConcurrentMap) IterCb(fn IterCb)

Callback based iterator, cheapest way to read all elements in a map.

func (*ConcurrentMap) Keys

func (m *ConcurrentMap) Keys() []fmt.Stringer

Return all keys as []string

func (*ConcurrentMap) MSet

func (m *ConcurrentMap) MSet(data map[fmt.Stringer]interface{})

func (*ConcurrentMap) MarshalJSON

func (m *ConcurrentMap) MarshalJSON() ([]byte, error)

Reviles ConcurrentMap "private" variables to json marshal.

func (*ConcurrentMap) Pop

func (m *ConcurrentMap) Pop(key fmt.Stringer) (v interface{}, exists bool)

Removes an element from the map and returns it

func (*ConcurrentMap) Remove

func (m *ConcurrentMap) Remove(key fmt.Stringer)

Removes an element from the map.

func (*ConcurrentMap) RemoveCb

func (m *ConcurrentMap) RemoveCb(key fmt.Stringer, cb RemoveCb) bool

RemoveCb locks the shard containing the key, retrieves its current value and calls the callback with those params If callback returns true and element exists, it will remove it from the map Returns the value returned by the callback (even if element was not present in the map)

func (*ConcurrentMap) Set

func (m *ConcurrentMap) Set(key fmt.Stringer, value interface{})

Sets the given value under the specified key.

func (*ConcurrentMap) SetIfAbsent

func (m *ConcurrentMap) SetIfAbsent(key fmt.Stringer, value interface{}) bool

Sets the given value under the specified key if no value was associated with it.

func (*ConcurrentMap) Upsert

func (m *ConcurrentMap) Upsert(key fmt.Stringer, value interface{}, cb UpsertCb) (res interface{})

Insert or Update - updates existing element or inserts a new one using UpsertCb

type ConcurrentMapShared

type ConcurrentMapShared struct {
	sync.RWMutex // Read Write mutex, guards access to internal map.
	// contains filtered or unexported fields
}

A "thread" safe string to anything map.

type IterCb

type IterCb func(key fmt.Stringer, v interface{})

Iterator callback,called for every key,value found in maps. RLock is held for all calls for a given shard therefore callback sess consistent view of a shard, but not across the shards

type RemoveCb

type RemoveCb func(key fmt.Stringer, v interface{}, exists bool) bool

RemoveCb is a callback executed in a map.RemoveCb() call, while Lock is held If returns true, the element will be removed from the map

type Tuple

type Tuple struct {
	Key fmt.Stringer
	Val interface{}
}

Used by the Iter & IterBuffered functions to wrap two variables together over a channel,

type UpsertCb

type UpsertCb func(exist bool, valueInMap interface{}, newValue interface{}) interface{}

Callback to return new element to be inserted into the map It is called while lock is held, therefore it MUST NOT try to access other keys in same map, as it can lead to deadlock since Go sync.RWLock is not reentrant

Jump to

Keyboard shortcuts

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