I am using WebApi and want to implement OData for one of my SolrNet resources.
WebApi supports OData if you return it an IQueryable. So I need an IQueryable provider for SolrNet queries.
Does anyone know of any, or some sample code of how I can get…
I am trying to get an enum to serialize to it's int value when posting to Solr.
So I have implemented a ISolrFieldSerializer to do this, As suggested here. But I can seem to register it within the Windsor container in a way that it then gets used…
We are working on ASP.NET MVC3 C# with SolrNet 3.6.
We have used dynamic fields. There are whitespaces in dynamic fields names: e.g Filter_SIM Slots:Single SIM.
How can I remove whitespaces from dynamic field names? (Here Filter_SIM Slots)
I found this article useful when indexing documents, however, how can I attach additional fields so I can pass in, say, the ID of the document in our database for use in displaying the search results? I thought by using the Fields (Of the…
Using Solr 3.6, I'm confused about considering a field as index or not..
For specifically two field, named Created Date, and Price. I need to have filter on both of them, but can't decide whether they should be defined as Index or not in…
I've got the following class:
public class Product
{
public Product()
{
Categories = new List();
}
[SolrUniqueKey("id")]
public int Id { get; set; }
[SolrField("name")]
public string Name { get; set;…
We're implementing solr with ecommerce application. The main objective is faster search and better faceted catalog navigation.
The problem however is, we're unable to figure out how to map dynamic facets into Solr. When I say dynamic facet, I mean…
Is Lucene Solr works with web farm with load balancing server. I'm looking to implement with asp.net mvc3 web application, and moving to web farm with load balancing server is the next in roadmap, so want to understand how to do it with solr?
I am using SOLR as a search engine of my application. But now it is not showing proper results.
In my schema file there is column SubscriptionIds which holds multiple values with a separator. They are stored as ,,4588,,4585,,6966,,4855,
Similarly…
I am trying to build the following query using SolrNet.
(type:Contact) AND ((firstName:Jason)^100) OR ((lastName: Winters)^100)
I have tried to use the following code:
var query = new SolrQuery("type:Contact") &&
new…
I am trying to query Solr using the SolrNet client.
I can index documents and search for them with the Solr web admin with out error.
When I try to query using the same class I indexed the documents with I get an error like the following on every…
I think I could be using this wrong, there wasn't much on the Ninject variant of multiple cores, but I'm trying to use Ninject and SolrNet. While taking advantage of fully loose mapping. So I know I need to use Ninject named bindings. Can't use…
I use Solr for couple of days and now I want to use it with my .NET application. I don't know where to start. What should I download (Solr, SolrNet, something else) ? And then how can I use it with my application, should I use .dll or NuGet Package…
I have been trying to get the Mime type form the file where i dont really know the File Type of the file. I know that there is a same questions
here
but this is not complete as i have to support .dwg (CAD files)
it is basically to use with Solr…