Which elasticsearch c#/.net client do you recommend ?

1 - Nest : https://github.com/Mpdreamz/NEST/commits/master

2 - elasticsearch.net : https://github.com/medcl/ElasticSearch.Net/commits/master

my best,

Serdar

link|improve this question

feedback

closed as not constructive by svick, Mat, Dori Aug 25 '11 at 9:39

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted

IMHO, I think both still need more work as they don't have complete coverage of the ElasticSearch REST API, percolate and complete Query DSLs being the most conspicuous missing.

Having used NEST I think that is more suitable if you want strongly typed results:-

QueryResponse<Jobtitle> queryResults = _client.Search<Jobtitle>(search);

where as ElasticSearch.Net you get back something like:-

var result = client.QueryDSL.Search(index, new string[] { "type" }, query, 0, 5);
foreach (var VARIABLE in result.GetHits().Hits)
{
Console.WriteLine(VARIABLE.Fields["name"]);
}

Whilst both APIs are missing features, they are on github so you can fork and help fill in the missing features.

I chose in the end to generate my own simple client from the thrift IDL

link|improve this answer
thank you very much Ian – sirmak Aug 24 '11 at 13:03
1  
Author of NEST here, i think NEST is slightly ahead feature wise but neither are prime time ready yet. I can only state NEST is still actively developed. – Martijn Laarman Aug 24 '11 at 21:57
thanks, Nest is great and now it's my choice, too, nice to meet you. – sirmak Aug 24 '11 at 23:47
1  
Thanks be sure to harass me on github if you find any issues, missing features, ideas or suggestions :) – Martijn Laarman Aug 25 '11 at 18:00
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.