A pooled writer and compressor.
This library is intended for scenarios where the number of writers you have is >= the number of threads you want to use for writing.
Note that this is an alpha release and the API could change drastically in future releases.
Please see the generated Rust Docs.
Add the following to your Cargo.toml
dependencies section, updating the version number as needed.
toml
[dependencies]
pooled-writer = "*"
By default this will come with a BGZF compressor. If that is not needed then add the default-features = true
specifier to the dependency declaration above (i.e. pooled-writer = {version = "*", default-features = false}
).
Assuming you have cloned the repo and are in the top level:
```bash cargo test
cargo test -- --ignored ```
This assumes that you have installed cargo-release
via cargo install cargo-release
and have set up credentials with crates.io
.
bash
cargo release <path|minor|major>