Go to file
bors[bot] 509a56a43d
Merge #158
158: Implements the dumps r=irevoire a=irevoire

closes #20

divergence from legacy meilisearch:
- dump v2 added, support loading of pending updates (only works dumps created from v2)
- added time stamps to the dump info
- Dump info are only persisted in an internal data structure, and they are not fetched from fs on demand anymore. This was a potential security flaw. This means that the dump infos are flushed on every restart.

Co-authored-by: tamo <tamo@meilisearch.com>
Co-authored-by: Marin Postma <postma.marin@protonmail.com>
2021-06-02 12:06:47 +00:00
.github fix-snapshot 2021-05-11 13:57:18 +02:00
meilisearch-error serve static site 2021-04-22 10:26:54 +02:00
meilisearch-http remove the dump_batch_size option from the CLI 2021-06-01 20:42:06 +02:00
.dockerignore add docker recipe 2021-03-01 14:41:57 +01:00
.gitignore put mini-dashboard in out-dir 2021-04-27 09:32:17 +02:00
bors.toml Update CI 2021-04-27 12:43:00 +02:00
Cargo.lock bump milli version and fix a performance issue for large dumps 2021-05-10 20:25:12 +02:00
Cargo.toml create workspace with meilisearch-error 2021-03-01 14:41:55 +01:00
Dockerfile review fixes 2021-04-26 10:20:46 +02:00
LICENSE add license 2021-02-28 10:08:36 +01:00
README.md Update README.md 2021-04-27 16:33:22 +02:00

Transplant

Transplant makes communication between the users and Milli using HTTP. The final purpose of Transplant is to be merged into the current MeiliSearch repository so that users will enjoy the new search engine performance provided by Milli.

Run the alpha releases

Currently only alpha versions are available.

You can:

  • Run it with Docker, for instance:
docker run -p 7700:7700 getmeili/meilisearch:v0.21.0-alpha.4 ./meilisearch
cargo run --release

Run the tests

cargo test

If you encounter any Too many open files error when running the tests, please upgrade the maximum number of open file descriptors with this command:

ulimit -Sn 3000