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]

Flushes any pending IO buffers to disk to ensure durability.

[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. If Tree is read-only, will do nothing.

Examples

use sled::{ConfigBuilder, Error};
let config = ConfigBuilder::new().temporary(true).build();
let t = sled::Tree::start(config).unwrap();

// unique creation
assert_eq!(t.cas(vec![1], None, Some(vec![1])), Ok(()));
assert_eq!(t.cas(vec![1], None, Some(vec![1])), Err(Error::CasFailed(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(Error::CasFailed(Some(vec![2]))));

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

[src]

Set a key to a new value.

[src]

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

Examples

let config = sled::ConfigBuilder::new().temporary(true).build();
let t = sled::Tree::start(config).unwrap();
t.set(vec![1], vec![1]);
assert_eq!(t.del(&*vec![1]), Ok(Some(vec![1])));
assert_eq!(t.del(&*vec![1]), Ok(None));

[src]

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

Examples

let config = sled::ConfigBuilder::new().temporary(true).build();
let t = sled::Tree::start(config).unwrap();
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(Ok((vec![2], vec![20]))));
assert_eq!(iter.next(), Some(Ok((vec![3], vec![30]))));
assert_eq!(iter.next(), None);

[src]

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

Examples

let config = sled::ConfigBuilder::new().temporary(true).build();
let t = sled::Tree::start(config).unwrap();
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(Ok((vec![1], vec![10]))));
assert_eq!(iter.next(), Some(Ok((vec![2], vec![20]))));
assert_eq!(iter.next(), Some(Ok((vec![3], vec![30]))));
assert_eq!(iter.next(), None);

Trait Implementations

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

impl Clone for Tree
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Send for Tree
[src]

impl Sync for Tree
[src]

impl Debug for Tree
[src]

[src]

Formats the value using the given formatter.