EFJoseph / NEST

ElasticSearch .NET Client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NEST

Strongly typed Elasticsearch client

NEST aims to be a .net client with a very concise API.

Indexing is as simple as:

var post = new Post() { Id = 12, ... }
client.Index(post);

Indexing asynchronously is as easy as:

client.IndexAsync(post, (c) => /* called later */);

For more examples please refer to the Wiki

Copyright

Copyright (c) 2010 Martijn Laarman and everyone wonderful enough to contribute to NEST

License

NEST is licensed under MIT. Refer to license.txt for more information.

About

ElasticSearch .NET Client


Languages

Language:C# 100.0%Language:Shell 0.0%