Struct sled::Tree [] [src]

pub struct Tree { /* fields omitted */ }

A flash-sympathetic persistent lock-free B+ tree

Methods

impl Tree
[src]

[src]

Load existing or create a new Tree.

[src]

Returns a ref to the current Config in use by the system.

[src]

Retrieve a value from the Tree if it exists.

[src]

Compare and swap. Capable of unique creation, conditional modification, or deletion. If old is None, this will only set the value if it doesn't exist yet. If new is None, will delete the value if old is correct. If both old and new are Some, will modify the value if old is correct.

Examples

use sled::Config;
let t = Config::default().tree();

// unique creation
assert_eq!(t.cas(vec![1], None, Some(vec![1])), Ok(()));
assert_eq!(t.cas(vec![1], None, Some(vec![1])), Err(Some(vec![1])));

// conditional modification
assert_eq!(t.cas(vec![1], Some(vec![1]), Some(vec![2])), Ok(()));
assert_eq!(t.cas(vec![1], Some(vec![1]), Some(vec![2])), Err(Some(vec![2])));

// conditional deletion
assert_eq!(t.cas(vec![1], Some(vec![2]), None), Ok(()));
assert_eq!(t.get(&*vec![1]), None);

[src]

Set a key to a new value.

[src]

Delete a value, returning the last result if it existed.

Examples

use sled::Config;
let t = Config::default().tree();
t.set(vec![1], vec![1]);
assert_eq!(t.del(&*vec![1]), Some(vec![1]));
assert_eq!(t.del(&*vec![1]), None);

[src]

Iterate over tuples of keys and values, starting at the provided key.

Examples

use sled::Config;
let t = Config::default().tree();
t.set(vec![1], vec![10]);
t.set(vec![2], vec![20]);
t.set(vec![3], vec![30]);
let mut iter = t.scan(&*vec![2]);
assert_eq!(iter.next(), Some((vec![2], vec![20])));
assert_eq!(iter.next(), Some((vec![3], vec![30])));
assert_eq!(iter.next(), None);

[src]

Iterate over the tuples of keys and values in this tree.

Examples

use sled::Config;
let t = Config::default().tree();
t.set(vec![1], vec![10]);
t.set(vec![2], vec![20]);
t.set(vec![3], vec![30]);
let mut iter = t.iter();
assert_eq!(iter.next(), Some((vec![1], vec![10])));
assert_eq!(iter.next(), Some((vec![2], vec![20])));
assert_eq!(iter.next(), Some((vec![3], vec![30])));
assert_eq!(iter.next(), None);

Trait Implementations

impl Send for Tree
[src]

impl Sync for Tree
[src]

impl Debug for Tree
[src]

[src]

Formats the value using the given formatter.

impl<'a> IntoIterator for &'a Tree
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more