NEST is a .NET client for elasticsearch
I have a set of documents like { tags:['a','b','c'] // ... a bunch properties } As stated in the title: Is …
elasticsearch nestIs it possible to get the raw search query from the NEST client? var result = client.Search<SomeType>(…
elasticsearch nestI am trying to update an existing indexed document. I have indexed tags, title and owners field. Now when the …
c# elasticsearch nestI am having an issue in kibana. It does not show any results in the Discover tab. Please look here …
elasticsearch kibana nest elastic-stackI'm doing this query in NEST var result = elasticClient.Search<SearchItemClass>( s=> s.Index("indexName") .Type("typeName") .…
elasticsearch nestWe're considering to switch from Solr/Solr.net to Elasticsearch. We started with NEST. We have only 4 documents in search …
c# .net asp.net-mvc elasticsearch nestI cant figure out why my searches are case sensitive. Everything I've read says that ES is insensitive by default. …
elasticsearch nestI started looking around for a search engine and after some reading I decided going with ElasticSearch (which is quite …
c# elasticsearch nestI have few documents in a folder and I want to check if all the documents in this folder are …
c# elasticsearch nestI am using .From() and .Size() methods to retrieve all documents from Elastic Search results. Below is sample example - …
elasticsearch nest