rusty-camino - A project to play with Rust based distributed engineering and information retrieval.
I'd like to say that someday we will morph it into a project like Microsoft's Helios paper, but that's just a goal to give us some focus at this point while we play with Rust. Ref https://blog.acolyer.org/2020/10/26/helios-part-1/
It's using tusk to run the automated scripts. Install it from the following:
brew install rliebz/tusk/tusk
Start the server:
cargo run --bin indexer
Create an index:
http POST localhost:3001/v1/foo2/_create
Index a document and query it back out:
echo '{ "a_foo": "lydia is great", "d_foo": 4171997 }' | http POST localhost:3001/v1/foo2/_upsert
echo 'a_foo:lydia' | http POST localhost:3001/v1/foo2/_search