0
votes
2answers
80 views

ElasticSearch accent insensitive query with NEST C# client

I´m trying to make a query in ElasticSearch with the NEST c# client a query without accent, my data has portuguese latin word with accent. See the code bellow: var result = ...
0
votes
2answers
285 views

Best Lucene search platform in 2013: Solr or ElasticSearch? [closed]

I run a job board (PostJobFree.com) with about 1M resumes in it. Average resume size is about 4000 bytes. PostJobFree uses ASP.NET/C#/SQL Server 2008 R2 and MS SQL Full Text search. From reading ...
1
vote
2answers
64 views

Add multiple (not hardcoded) facets in my querybuiler

I'm pretty new to Elastic Search and the Elastic Search API I'm using in C#: PlainElastic.Net. I have a simple request, but I'm stuck with it: how can I add multiple (not hardcoded) facets in my ...
0
votes
1answer
63 views

ElasticSearch NEST client not returning results

I am running a simple query through the ElasticSearch NEST C# client. I receive results when I run the same query through http, but I get zero documents returned from the client. This is how I ...
0
votes
1answer
140 views

NEST C# - elasticsearch - ecommerce filter combination

I am trying to implement elasticsearch into my webshop but having some troubles on using filters. The filtering is done dynamically. Example: I start with showing all the products that are indexed. ...
0
votes
0answers
66 views

Synonym Searching in NEST

Following on from the previous question results containing synonym terms not returned from Nest We've tried the suggestions offered as understood by looking at the tests, and are still unable to get ...
0
votes
1answer
110 views

results containing synonym terms not returned from Nest

We are attempting to get our Elastic Search Index to return us a result set which finds synonyms var synonyms = new List<string> { "egg , embryo"}; var indexSettings = new ...
1
vote
1answer
245 views

Elastic Search using NEST Field Boosting

I am using Elastic Search in C# using the NEST strongly typed client. I have an index containing Entries: [ElasticType(Name = "Entry", IdProperty = "Id")] public class Entry { public string Id { ...
0
votes
1answer
256 views

Dynamic Facets in Elastic Search using Nest Client

I need a way to control building a facet without only using the nest fluent api. The main need is that I may need to include or exclude allterms or facetfilters. The code below works but to change ...
0
votes
1answer
184 views

elasticsearch using NEST: How to use document versioning?

I am using elasticsearch and accessing it from C# through the NEST driver. I need to do some concurrency control on the documents I am adding and updating through the NEST driver. Here is a link to ...
3
votes
1answer
245 views

Elasticsearch using NEST: How to configure analyzers to find partial words?

I am trying to make a search by partial word, ignoring casing and ignoring the accentuation of some letters. Is it possible? I think ngram with default tokenizer should do the trick but i don't ...
1
vote
2answers
169 views

“Dynamically” creating a filter in NEST

I have an interesting challenge, which I think there is an easy answer to. I know that NEST filters work correctly when syntactically you do something like this: var andFilter = ...
1
vote
2answers
506 views

Using NEST on ElasticSearch - How do i use a partially populated object as a search criteria

So I have successfully created my index of "Package" objects and a straight forward text query is working perfectly. I'd love to know if / how i can use a partially populated object (of type ...
1
vote
1answer
174 views

Search for a match within a collection with elasticsearch & NEST

I'm really new to elasticsearch and NEST, so sorry for the basic question. I'm trying to find out how i can search for all documents that have a match in a collection property. My elastic document ...
4
votes
3answers
111 views

Is it possible to have a field named bool in C#?

I am sitting playing with elastic search from C#, and I wanted to create a query using an anonymous type in C# serialized to JSON. But I ran in to a problem as I need JSON that looks like this in one ...

1 2
15 30 50 per page