solrnet

can i use copyfield or dynamicfield or multivalued field functionality in solrnet?

can any body explain how during indexing i can use copyfield or dynamicfield or multivalued field functionality usin solrnet ...

SolrNet/Solr - Update vs. Overwrite Document

I am using SolrNet to intreract with a Solr index. I have a daemon application writing to the Solr index with adds/updates/deletes. However with SolrNet an Add with the same unique-key over-writes (replaces) the existing document, instead of appending (combining) them. In Lucene I could do something like this where term is the Lucene te...

Where / How to fit Solr into ASP.net MVC app (using nHibernate / Repository Pattern)

I'm currently in the middle of a reasonably large question / answer based application (kind of like stackoverflow / answerbag.com) We're using SQL (Azure) and nHibernate for data access and MVC for the UI app. So far, the schema is roughly along the lines of the stackoverflow db in the sense that we have a single Post table (contains bo...

SolrNet - Score always 0

I have a simple query to a Solr instance using SolrNet, But for some reason, the score is always 0. I have verified : have a field [SolrField("Score")] public double Score { get; set; } in my mapping class have checked that the fields being searched are string instead of text. What else could be wrong? Please help Update...

Solrnet & Clustering

Is it possible to get clustering in Solr querying via SolrNet? using built-in algos. like Carrot2 etc.? Can anyone share some sample code or tips to proceed? ...

SolrNet Faceting question

Using SolrNet for querying & faceting. I have a combination of int, tdate and string fields I would like to facet on. However I am unable to mix SolrFacetFieldQuery and SolrFacetQuery (for ranges) and SolrFacetDateQuery (for date ranges) in the same query. I get an error "no best type found for implicitly typed array". How should this b...

Solr and .Net Filters

Hi all, I am relatively new to the wonderfulworld of Solr and have the following question. What is the best way to process documents in terms of extracting the document structure and passing it onto Solr for indexing. I would like to be able to extract the text from Word Docs, PDF's, Spreadsheets, HTML pages etc. In fact virtually any d...

Solr Connection' already registered in container

Hi... i am using solr search on asp.net when i search first time it give me correct search result, bt after that when i change search parameter and try to search it give an error ("Solr Connection' already registered in container") so pl z suggest me that how can i remove it... ...

How to configure Apache Tika with apache Solr 1.4.1

Hi All I want to index a large number of pdf documents i have found a reference that it could be done by apache tika but unfortunately did not found any refernce how could I configure apache tika with solr 1.4.1. and one other question is how to send documents to solr directly without the use of curl i m using solrnet for/indexing Reg...

Solr stops responding (or slows down to molasses)...(Solr newbie)

Running multi-core Solr under Tomcat 6.0 /Win 2008 Server and ASP.NET queries via SolrNet. One of the cores is huge i.e. ~25 million documents (~20 GB disk-space) and several fields. The other 3 cores are much smaller (few gigs each). After a couple of queries to the large index, Solr slows down dramatically and stops responding i.e. ca...

Multiple facets with SolrNet

I want to do a query with two facets with SolrNet, City And Category. But each facet has diferrent properties. For example mincount for city is zero and for category is 1. How can I do this with SolrNet? I know FacetParametes has Queries property that can be an array of queries, but what about mincount? Thanks. ...

How to initialize more than one Solr instance using the same document class?

In Solr I have two cores. The schema is the same but they have different documents. Now I would like to have only one document class and initialize Solr for those two cores using the same document class. For example: Startup.Init("http://localhost:8983/solr/core1"); Startup.Init("http://localhost:8983/solr/core2"); But I get exception...

How do I get solr term frequency?

hi All I have a question that how could somebody get term frequency as we do get in lucene by the following method DocFreq(new Term("Field", "value")); using solr/solrnet. ...

Is any work being done on a .Net port of Solr?

I'm looking to embed Solr as a library in a .Net app. I understand that there is an embedded Java client which queries a Solr core directly, and I could potentially run this on IKVM, however, I'm looking for something which has been translated. I also have looked at Solrnet, but it appears to be only a client to an http-hosted Solr insta...