Questions tagged [solrnet]

SolrNet is an Apache Solr client for .NET

SolrNet is an Apache Solr client for .NET

602 questions
0
votes
1 answer

What would be the best way to implement a custom range filter using Solr?

What would be the best way to implement a custom range filter using Solr? I.e. I want to show a filter "Harddrive" (for PC's), which can have a value in the range from 32GB to 2TB. I want these values to be added to the query to Solr as a…
Dharmik Bhandari
  • 1,702
  • 5
  • 29
  • 60
0
votes
0 answers

How to grouping facet_counts results into separate categories using multiple Solrnet facet.query parameters?

I have implemented CreateDate Field Search as well Spatial Search, both using facet.query to generate a link like this. …
0
votes
1 answer

LanguageAnalysis in solr becomes some words not searchable

I have added LanguageAnalysis in my schema file. After adding this stemming filter factory has started working but this made my some word unsearchable. I have added in query time after the . My schema file looks like :
Krutal Modi
  • 477
  • 9
  • 25
0
votes
2 answers

StackOverflowException in solrnet

We have the same requirement of passing huge data like http://bugsquash.blogspot.in/2010/12/customizing-solrnet.html, we tried the following. 1) Increased the requestHeaderSize to Int32.MaxValue - stackoverflow exception 2) Used PostSolrconnection …
Rajan R.G
  • 825
  • 1
  • 7
  • 10
0
votes
2 answers

Dealing with spell check suggestions

We are trying to use Solr's spell check to do a "Did you mean?" type suggestion. The problem we are having is that we are replacing the original term in the query with Solr's suggestions. For example: a search for "10ks" (we are creating an events…
Rob Stevenson-Leggett
  • 35,279
  • 21
  • 87
  • 141
0
votes
1 answer

Solr: Getting facets without exact match

Let's assume I search for "developer" in a field, I get 1000 results & for "Php Developer" I get 1500 results. My query returns facets like: Php Developer (16) Developer (15) .Net Developer (14) The above facets means that there are 16 documents…
eadam
  • 23,151
  • 18
  • 48
  • 71
0
votes
2 answers

SolrNet facetted search

I'm using Solr and Solrnet for the first time. I have managed to create a schema, which has amongst them the following fields: created_date DateTime parent_id int categories string multi-valued I've been able to get a basic search working against…
higgsy
  • 1,991
  • 8
  • 30
  • 47
0
votes
1 answer

How to compare two date fields in solrnet?

I'm using solrnet for eCommerce application which is based on ASP.NET MVC4 with C#. I've two fields in solr called 'StartDate' and 'EndDate'. I want to display products that matches condition like current date is greater than and equal to…
Dharmik Bhandari
  • 1,702
  • 5
  • 29
  • 60
0
votes
1 answer

Missing records from solr index?

Is there anyway to find the missing records from solr index. I am running crawling against a SQL DB. My primaryKey is "id". There are a few records missing in index. Is there any specific way to find those all?? Is it going to make any difference…
Varun
  • 426
  • 3
  • 7
  • 18
0
votes
1 answer

Solr: How to create Facets based on tags

If you have a look at the following to links, camers are faceted by Mega pixels. Where as Flash memory is faceted by Memory Size. http://www.pricegrabber.com/cameras/digital/p-48/ http://www.pricegrabber.com/computers/flash-memory/p-152/ I guess…
eadam
  • 23,151
  • 18
  • 48
  • 71
0
votes
1 answer

Keeping track of top 'N' queries in Solr

Is there any way we can keep track of the top 'N' queries in solr? If not, can someone give me any pointers on this? Thanks
dehsams123
  • 251
  • 2
  • 7
  • 18
0
votes
1 answer

loads all facets in multifacet in solrnet

I've implemented multifacet in asp.net mvc based eCommerce application. In that, I do load specification filter using facet query with mincount=1.It loads all filters which are having mincount=0 on applying filter second time. for example. In my…
Dharmik Bhandari
  • 1,702
  • 5
  • 29
  • 60
0
votes
1 answer

Sending a Solr query url in SolrNet

I have a certain url representing a Solr request which I would like to send with SolrNet. The url contains the request handler name and some other parameters such as a stream.url. How do I generate the request using SolrNet and send it to…
snakile
  • 52,936
  • 62
  • 169
  • 241
0
votes
0 answers

How to create bind multiple nodes within a single node in SOLR schema file

Iam using SOLR as my search query database. I am facing difficulty in binding multiple nodes (a collection) within a node in SOLR. Can any body tell me the schema for the same. My Document is as follows namespace SOLRApp { public class…
shakti
  • 191
  • 1
  • 8
  • 21
0
votes
1 answer

Not able to get TermVector results properly in SolrNet

I'm not able to get TermVector results properly thru SolrNet. I tried with the following code. QueryOptions options = new QueryOptions() { OrderBy = new[] { new SortOrder("markupId", Order.ASC) }, TermVector = new TermVectorParameters { …
Kanda
  • 279
  • 3
  • 6