From 703d2026e4ea16c582b43ce03e50c0d5f76c53a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9mentine=20Urquizar?= Date: Tue, 27 Apr 2021 16:33:00 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0271ef082..6b80fad0e 100644 --- a/README.md +++ b/README.md @@ -1 +1,35 @@ -# transplant of meilisearch http on the new engine +# Transplant + +Transplant makes communication between the users and [Milli](https://github.com/meilisearch/milli) using HTTP. The final purpose of Transplant is to be merged into the current [MeiliSearch repository](https://github.com/meilisearch/MeiliSearch) 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: + +```bash +docker run -p 7700:7700 getmeili/meilisearch:v0.21.0-alpha.4 ./meilisearch +``` + +- With the available [release assets](https://github.com/meilisearch/transplant/releases). + +- Compile from the source code: + +```bash +cargo run --release +``` + +## Run the tests + +``` +cargo test +``` + +If you encouter 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 +``` From cea0c1f41d56138519ba730bb624e01cd51c04d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9mentine=20Urquizar?= Date: Tue, 27 Apr 2021 16:33:22 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b80fad0e..7e0fc476f 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ cargo run --release cargo test ``` -If you encouter any `Too many open files` error when running the tests, please upgrade the maximum number of open file descriptors with this command: +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