Questions tagged [solrnet]

SolrNet is an Apache Solr client for .NET

SolrNet is an Apache Solr client for .NET

602 questions
4
votes
2 answers

SolrNet query not working for Scandinavian characters

When making a query through SolrNet that contains Scandinavian characters like ø, æ, å the query returns no results while queries containing regular words work fine. The query has been added to the FilterQueries collection using the SolrQueryByField…
Pankaj Kumar
  • 1,748
  • 6
  • 28
  • 41
4
votes
1 answer

Solr/Lucene: Indexing facet values

For example, say I have the following facet: Colors Red (7825) Orange (2343) Green (843) Blue (5412) In my database, colors would be a table and each color would have a primary key and a name/value. When indexing with Solr/Lucene, in all of the…
Jesse MacVicar
  • 546
  • 1
  • 7
  • 14
4
votes
1 answer

Advanced Search Option in Solr corresponding to DtSearch options

We are replacing the search and indexing module in an application from DtSearch to Solr using solrnet as the .net Solr client library. We are relatively new to Solr/Lucene and would need some help/direction to understand the more advanced search…
koder
  • 887
  • 9
  • 29
4
votes
3 answers

Solr 4.0 and Solrnet Atomic Updates

As we all know solr 4.0 supports atomic updates. http://wiki.apache.org/solr/UpdateXmlMessages#Optional_attributes_for_.22field.22 Is this supported in solrnet yet? If yes can I know the syntax. Thanks a ton.
Kaarthik
  • 627
  • 2
  • 12
  • 32
4
votes
2 answers

Solr search query returning full head exception

I am calling remote solr search hosted on other machine in a c# application. Now since my query length becomes too large so search engine is returning full head error. I can't reducing query length. so i just wanted to know can i make a post request…
Anu
  • 753
  • 2
  • 13
  • 22
4
votes
3 answers

Solr query always returning first 10 rows

I have implemented Solr search in one of my .net application. Everything working fine except whenever I try to use the Solr's search functionalities, it's returning only 10 results, while I have more than 100 documents indexed. Can anyone please…
Anu
  • 753
  • 2
  • 13
  • 22
3
votes
1 answer

Solr boost for multivalued date field

I have a Solr index and each document is the information of an Event. In my schema Schedule is a multivalued field of type date. I am wondering if it is possible to boost the documents with a schedule date (any of those dates in the multivalued…
Reza
  • 353
  • 1
  • 2
  • 15
3
votes
1 answer

Using POST requests to Solr from SolrNet

Is it possible to send data to Solr using POST instead of GET? I use SolrNet and a Windsor container.
Ahsan Iqbal
  • 1,422
  • 5
  • 20
  • 39
3
votes
2 answers

what is the best practice to implement SOLR in Ecom applications?

I am new user to SOLR. I am working on an E-commerce web application which have SQL database. I want to implement SOLR for my "category page" in application where we will show products of that category with specific information like available stock…
K24
  • 53
  • 2
  • 9
3
votes
1 answer

Is there a way to get results of solr grouping using Solr Net

I want to try new solr collapsing/grouping included in solr 3.3, i have tried queries on solr Admin page and that works absolutely right but when I try to query in my c# code using solr net that does not seem to work as expected. Here is how I am…
Ahsan Iqbal
  • 1,422
  • 5
  • 20
  • 39
3
votes
1 answer

What does it mean to use Proper Windsor Service Overrides?

I am trying to create an index agent service for a multi-instance Solr install using SolrNet. I have created the service, which will use an interface to create multiple agents to index with. These agents are specified in an external configuration…
Brendan Hannemann
  • 2,084
  • 1
  • 18
  • 33
3
votes
5 answers

Duplicates in Solr index - items added twice or more times

Consider you have a Solr index with approx. 20 Million items. When you index these items they are added to the index in batches. Approx 5 % of all these items are indexed twice or more times, therefore causing a duplicates problem. If you check the…
Martin S Ek
  • 2,043
  • 2
  • 16
  • 22
3
votes
2 answers

Solrnet: problem when search field value is query operator (eq. or, and)

To be more precise I will be working with example... Clean query is: (type:77 AND (zipCode:12345 OR name:OR)) When querying on Solr Admin page this throws exception: org.apache.lucene.queryParser.ParseException: Cannot parse... So on Solr Admin page…
3
votes
1 answer

How to install SOLRNET

Hi I am very new to SOLRNET. Can you please explain where I can get the software of SOLRNET,how to install it. Lucene in java has a port for .NEt right.So is this a port to Solr in java??? Thank you
Nakkala
  • 103
  • 3
  • 6
3
votes
2 answers

Solrnet - How to initialize instance with basic authentication

It is possible to connect solr instance with basic authentication ? I have tried with : Startup.Init("http://user:mdp@localhost:8080/solr"); But it doesn't work. have you got a solution ? Thanks.
bobosh
  • 425
  • 5
  • 21