Documentation ¶
Index ¶
- type Iterator
- type Node
- func (n *Node) Get(k []byte) (interface{}, bool)
- func (n *Node) GetWatch(k []byte) (<-chan struct{}, interface{}, bool)
- func (n *Node) Iterator() *Iterator
- func (n *Node) LongestPrefix(k []byte) ([]byte, interface{}, bool)
- func (n *Node) Maximum() ([]byte, interface{}, bool)
- func (n *Node) Minimum() ([]byte, interface{}, bool)
- func (n *Node) Walk(fn WalkFn)
- func (n *Node) WalkPath(path []byte, fn WalkFn)
- func (n *Node) WalkPrefix(prefix []byte, fn WalkFn)
- type Tree
- type Txn
- func (t *Txn) Commit() *Tree
- func (t *Txn) CommitOnly() *Tree
- func (t *Txn) Delete(k []byte) (interface{}, bool)
- func (t *Txn) Get(k []byte) (interface{}, bool)
- func (t *Txn) GetWatch(k []byte) (<-chan struct{}, interface{}, bool)
- func (t *Txn) Insert(k []byte, v interface{}) (interface{}, bool)
- func (t *Txn) Notify()
- func (t *Txn) Root() *Node
- func (t *Txn) TrackMutate(track bool)
- type WalkFn
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Iterator ¶
type Iterator struct {
// contains filtered or unexported fields
}
Iterator is used to iterate over a set of nodes in pre-order
func (*Iterator) SeekPrefix ¶
SeekPrefix is used to seek the iterator to a given prefix
func (*Iterator) SeekPrefixWatch ¶
SeekPrefixWatch is used to seek the iterator to a given prefix and returns the watch channel of the finest granularity
type Node ¶
type Node struct {
// contains filtered or unexported fields
}
Node is an immutable node in the radix tree
func (*Node) LongestPrefix ¶
LongestPrefix is like Get, but instead of an exact match, it will return the longest prefix match.
func (*Node) WalkPath ¶
WalkPath is used to walk the tree, but only visiting nodes from the root down to a given leaf. Where WalkPrefix walks all the entries *under* the given prefix, this walks the entries *above* the given prefix.
func (*Node) WalkPrefix ¶
WalkPrefix is used to walk the tree under a prefix
type Tree ¶
type Tree struct {
// contains filtered or unexported fields
}
Tree implements an immutable radix tree. This can be treated as a Dictionary abstract data type. The main advantage over a standard hash map is prefix-based lookups and ordered iteration. The immutability means that it is safe to concurrently read from a Tree without any coordination.
func (*Tree) Delete ¶
Delete is used to delete a given key. Returns the new tree, old value if any, and a bool indicating if the key was set.
func (*Tree) Insert ¶
Insert is used to add or update a given key. The return provides the new tree, previous value and a bool indicating if any was set.
type Txn ¶
type Txn struct {
// contains filtered or unexported fields
}
Txn is a transaction on the tree. This transaction is applied atomically and returns a new tree when committed. A transaction is not thread safe, and should only be used by a single goroutine.
func (*Txn) Commit ¶
Commit is used to finalize the transaction and return a new tree. If mutation tracking is turned on then notifications will also be issued.
func (*Txn) CommitOnly ¶
CommitOnly is used to finalize the transaction and return a new tree, but does not issue any notifications until Notify is called.
func (*Txn) Delete ¶
Delete is used to delete a given key. Returns the old value if any, and a bool indicating if the key was set.
func (*Txn) GetWatch ¶
GetWatch is used to lookup a specific key, returning the watch channel, value and if it was found
func (*Txn) Insert ¶
Insert is used to add or update a given key. The return provides the previous value and a bool indicating if any was set.
func (*Txn) Notify ¶
func (t *Txn) Notify()
Notify is used along with TrackMutate to trigger notifications. This must only be done once a transaction is committed via CommitOnly, and it is called automatically by Commit.
func (*Txn) Root ¶
Root returns the current root of the radix tree within this transaction. The root is not safe across insert and delete operations, but can be used to read the current state during a transaction.
func (*Txn) TrackMutate ¶
TrackMutate can be used to toggle if mutations are tracked. If this is enabled then notifications will be issued for affected internal nodes and leaves when the transaction is committed.