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…
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 :
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 …
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…
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…
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…
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…
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…
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…
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…
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…
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…
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
{
…