Silo is a decoupled, fast, and smart research and analysis engine for storing and querying data about tagged populations using tags stored on a tree structure.
•
|- silo // Silo's CLI entrypoint, spawns the core's Service with all default actors
|- silo-core // Silo's domain, util functions and default actix system
|- silo-db // Silo's database adapters, provides methods for persisting data in Silo
|- silo-transform // Silo's exporting interface, provides different output types and methods for extracting data to other placesBuild Silo's CLI (silo) with:
$ cargo build --release --bin siloRun through cargo with:
$ cargo r --release --bin siloTo run silo's test suite, use:
$ cargo testBuild the docs (with the optional --open flag to open them):
$ cargo doc --open