SKL

[github][Github-url] [Build][CI-url] [codecov][codecov-url] [docs.rs][doc-url] [crates.io][crates-url] [rustc][rustc-url] [license-apache][license-apache-url] [license-mit][license-mit-url] A lock-free thread-safe skiplist implementation (no_std) for writing memery table, SST table or something else. skl-rs is a pure Rust implementation for https://github.com/dgraph-io/badger/tree/master/skl English | [简体中文][zh-cn-url]

Installation

toml [dependencies] skl = "0.2"

Support Platforms

| targets | status | |:-----------------------------:|:---------:| | aarch64-linux-android | ✅ | | aarch64-unknown-linux-gnu | ✅ | | aarch64-unknown-linux-musl | ✅ | | i686-pc-windows-gnu | ✅ | | i686-linux-android | ✅ | | i686-unknown-linux-gnu | ✅ | | mips64-unknown-linux-gnuabi64 | ✅ | | powerpc64-unknown-linux-gnu | ✅ | | riscv64gc-unknown-linux-gnu | ✅ | | wasm32-unknown-unknown | ✅ | | wasm32-unknown-emscripten | ✅ | | x8664-unknown-linux-gnu | ✅ | | x8664-pc-windows-gnu | ✅ | | x86_64-linux-android | ✅ |

Example

```rust use skl::FixedSKL;

fn main() { const N: usize = 1000; let l = FixedSKL::new(1 << 20); let wg = Arc::new(()); for i in 0..N { let w = wg.clone(); let l = l.clone(); std::thread::spawn(move || { l.insert(key(i), newvalue(i)); drop(w); }); } while Arc::strongcount(&wg) > 1 {} for i in 0..N { let w = wg.clone(); let l = l.clone(); std::thread::spawn(move || { asserteq!( l.get(key(i)).unwrap().asvalueref(), newvalue(i).asvalueref(), "broken: {i}" ); drop(w); }); } } ```

TODO (help wanted)

Thanks in advance for your helps!

License

skl-rs is under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE, LICENSE-MIT for details.

Copyright (c) 2022 Al Liu.