MeiliSearch | Website | Blog | Twitter | Documentation | FAQ
⚡ Lightning Fast, Ultra Relevant, and Typo-Tolerant Search Engine MeiliSearch client written in C#
MeiliSearch .NET is a client for MeiliSearch written in C#. MeiliSearch is a powerful, fast, open-source, easy to use and deploy search engine. Both searching and indexing are highly customizable. Features such as typo-tolerance, filters, and synonyms are provided out-of-the-box.
- 🔧 Installation
- 🚀 Getting started
- 🤖 Compatibility with MeiliSearch
- 🎬 Examples
- ⚙️ Development Workflow
// TODO
There are many easy ways to download and run a MeiliSearch instance.
For example, if you use Docker:
$ docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
NB: you can also download MeiliSearch from Homebrew or APT.
// TODO
This package is compatible with the following MeiliSearch versions:
v0.11.X
var index = client.CreateIndex("uid1");
client.CreateIndex("uid2", "movieId");
var client = new MeilisearchClient(_httpClient);
var indexes = await client.GetAllIndexes();
var client = new MeilisearchClient(_httpClient);
var indexes = await client.GetIndex("somerandomIndex");
var updateStatus = await index.AddorUpdateDocuments(new[]{new Movie {Id = "1", Name = "Batman"}});
Update Status has a reference UpdateId
to get status of the action.
var documents = await index.GetDocuments<Movie>(new DocumentQuery {Limit = 1});
var documents = await index.GetDocument<Movie>("10");
var updateStatus = await index.DeleteOneDocument("11");
var updateStatus = await index.DeleteDocuments(new []{"12","13","14"});
var updateStatus = await indextoDelete.DeleteAllDocuments();
UpdateStatus individualStatus = await index.GetUpdateStatus(1);
var status = await index.GetAllUpdateStatus();
var movies = await this.index.Search<Movie>("ironman");
var movies = await this.index.Search<Movie>("ironman", new SearchQuery {Limit = 100});
If you want to contribute, this section describes the steps to follow.
$ docker run -d -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --no-analytics=true
$ dotnet restore
$ dotnet test
MeiliSearch tools follow the Semantic Versioning Convention.
You must do a PR modifying the file src/Meilisearch/Meilisearch.csproj
with the right version.
<Version>X.X.X</Version>
Once the changes are merged on master
, you can publish the current draft release via the GitHub interface.
A GitHub Action will be triggered and push the new package to Nuget.
MeiliSearch provides and maintains many SDKs and Integration tools like this one. We want to provide everyone with an amazing search experience for any kind of project. If you want to contribute, make suggestions, or just know what's going on right now, visit us in the integration-guides repository.