/NEST

ElasticSearch .NET Client

Primary LanguageC#

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.