Tagged Questions
SolrNet is an Apache Solr client for .NET
5
votes
1answer
550 views
Solr or Nhibernate Search
Bit confused here,
How’s Solr or Solrnet any different from Nhibernate Search? Does Solr offer anything more to Lucene.net that Nhibernate Search?
4
votes
2answers
537 views
How to configure Apache Tika with apache Solr 1.4.1
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 ...
4
votes
4answers
171 views
Display ellipsis before and after fragment in SOLR
I have SOLR configured to return fragments with a fragsize of 500.
Sometimes, the whole field is 500 characters or less, so the fragment is identical to the field. For fields that are longer than ...
4
votes
1answer
987 views
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 ...
3
votes
2answers
207 views
Unable to find assembly - imposible to trace error
I have a website which runs in IIS 7.0 in an Integrated v4.0 application pool.
Starting from today I get the below exception in the Windows event Log. The website is online for 1 month and I never got ...
3
votes
1answer
94 views
Can Attributes on a Property be Hidden?
I am attempting to use reflection to determine which Properties of a Type have a certain Attribute. This seems to work fine when I create a custom attribute myself, but is currently not working for ...
3
votes
3answers
901 views
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 ...
3
votes
1answer
457 views
Solr Index appears to be valid - but returns no results
Solr newbie here.
I have created a Solr index and write a whole bunch of docs into it. I can see
from the Solr admin page that the docs exist and the schema is fine as well.
But when I perform a ...
3
votes
1answer
1k views
How to add Spatial Solr to a Solrnet query
I am running Solr on my windows machine using jetty. I have downloaded the Spatial Solr Plugin which I finally managed to get up and running. I am also using Solrnet to query against Solr from my ...
2
votes
2answers
111 views
How to boost fields in solr
I already have the boost determined before hand. I have a field in the solr index called boost1 . This boost field will have a value from 1 to 10 similar to google PR rank. This is the boost that ...
2
votes
2answers
154 views
How to use Solr?
I’m programming en ASP MVC3 application. One part of that application should be a product list containing faceted search, full text search and distance search. After a while of research I found SOLR ...
2
votes
1answer
130 views
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 ...
2
votes
3answers
997 views
Response is not available in this context
I have problem. Locally everything works fine but in the production server it always throws exception 'Response is not available in this context'. What can be the problem? I've noticed that a lot of ...
2
votes
0answers
118 views
RichTextBox.Find doesn't work with Solr Highlights
My application needs to able to indicate where in the original document do the highlights from Solr actually come from. For the time being, my project deals only with .txt files.
I'm using the ...
2
votes
2answers
665 views
SOLR dataimport 404 Error
I m facing Problem with Dataimport in Solr. if i call this Link
http://localhost:8983/solr/dataimport?command=full-import&clean=false
showing Error
HTTP ERROR 404
Problem accessing ...
2
votes
1answer
59 views
Opening a file at a location where I encounter a hit
I am using ASP.Net MVC with C# and SOLRNET for my search tool. The files I index include .pdf files, word docs, excel etc...
I am able to search and retrieve all the docs with a hit. Now the problem ...
2
votes
1answer
403 views
Solr/SolrNet Grouping results
I'm using Solr for a product catalogue built on asp.net with solrnet and everything works pretty well so far. I need to extend the search results by adding some grouping option to it.
First I’ll ...
2
votes
2answers
188 views
Using Solr for multiple sites
I have setup a Solr server, now, I have two sites that I want to index and search using SolrNet.
How do I differentiate the two sites' content in Solr?
2
votes
4answers
129 views
“Object Reference Not Set…” on object creation
I have a class definition that looks like this:
public class SolrObj
{
[SolrUniqueKey("id")]
public int id { get; set; }
[SolrField("title")]
public string title { get; set; }
...
2
votes
2answers
904 views
Hadoop to create an Index and Add() it to distributed SOLR… is this possible? Should I use Nutch? ..Cloudera?
Can I use a MapReduce framework to create an index and somehow add it to a distributed Solr?
I have a burst of information (logfiles and documents) that will be transported over the internet and ...
2
votes
1answer
332 views
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 ...
2
votes
1answer
201 views
Solr Connection' already registered in container
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 ...
2
votes
2answers
407 views
Solr and .Net Filters
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 ...
2
votes
3answers
210 views
Presenting SOLR results merged with individual user data
I'm looking for a strategy to present a individual user's rating on a solr document.
ie. Users get to put give a rating 1-5 on a document and I want to present that back to them as they search.
I ...
2
votes
1answer
559 views
Solrnet Paging - How do I set the Start and Rows parameters from .NET?
I'm a Certified .NET developer who is responsible for implementing a Solr search via Solrnet. I'm close to having it where I need it, yet far from seeing the performance my client needs.
Normally, I ...
1
vote
4answers
49 views
Solr / rdbms, where to store additonal data
What would be considered best practice when you need additional data about facet results.
ie. i need a friendlyname / image / meta keywords / description / and more.. for product categories. (when ...
1
vote
1answer
59 views
Index pdf documents in Solr from C# client
Basically I'm trying to index word or pdf documents in Solr and found the ExtractingRequestHandler, but can't figure out how to write code in c# that performs the HTTP POST request like in the Solr ...
1
vote
1answer
39 views
Can Solr be used to match a document against keywords without storing the document?
I'm not entirely sure on the vocabulary, but what I'd like to do is send a document (or just a string really) and a bunch of keywords to a Solr server (using Solrnet), and have a return that tells me ...
1
vote
2answers
70 views
Solrnet: unable to retrieve multivalue field from Solr
I have a model similar to below
public class Product
{
[SolrUniqueKey("id")]
public int ID { get; set; }
[SolrField("storage")]
public string Storage { get; set; }
...
1
vote
2answers
56 views
Index the value of an Enum, not the string
Is it possible to index the value of an Enum instead of its string representation using Solrnet?
Say I have to following enum:
[Serializable]
[Flags]
public enum Gender
{
Male = 0,
Female = 1
}
...
1
vote
1answer
35 views
SolrNet: Can size of the synonym.txt file be an issue while indexing?
My indexing was working fine initially. I then changed my schema to use SynonymFilterFactory while indexing. My synonym.txt file is 1.27MB. Since then whenever I have tried to reindex using synonym, I ...
1
vote
1answer
79 views
SolrNet - How to disable quotes in SolrQueryByField?
I am using SolrQueryByField to test how Solr performs when searching particular fields. However SolrQueryByField seems to apply quotes around multi-word query. The final url has something like.. ...
1
vote
1answer
81 views
Using SolrNet 4.0 alpha 1 or later with Autofac
I notice the latest alpha of SolrNet supports Autofac integration.
This wiki page discusses how to integrate with the existing containers (StructureMap, Windsor, etc) but I couldn't find any examples ...
1
vote
1answer
84 views
SolrNet: How to switch Solr connection to another server if the currently used server goes down?
I have to setup two solr servers, so that if one of the servers goes offline, traffic can be switched to the other server at runtime.
One way is to let Solr try to connect to the server and after it ...
1
vote
1answer
215 views
Sorting with Multivalued Field in Solr
I Have a Solr index that stores Price in a multivalued field for each Product.
I need to sort the result set by Price where the Price is Low to high and High to Low.
I try to use sorting on Price ...
1
vote
2answers
135 views
Solr: How to search multiple fields
I am using solrnet. I have a title and Description fields. I need to search both fields simultaneously. How do I do this?
1
vote
2answers
77 views
How to find results that do NOT match a keyword?
Is there any way I can user a NOT or other negation operator before a text search keyword for example,
NOT program
When I do such a search there are 0 records returned.
Please let me know some way ...
1
vote
1answer
121 views
What is wrong with this solr query
I want to find all the documents that is similar to a specific document within solr. I have installed solr and made some queries. The query I am trying to make gives an error which I cannot make out ...
1
vote
1answer
260 views
Solr: What are the benefits of length normalization/omitNorms=false?
We're using Solr to search articles of various lengths. We index both descriptive metadata (title, author, category, keywords, etc) and the full article text. We do not boost relevance at index time ...
1
vote
2answers
175 views
solrnet, solr grouping and ngroups paremeter
I use grouping with solr 3.3 and solrnet.
I want to paginate results using the number of grouping result. Solr allows this with ngroups parameter.
is it possible to use this parameter with solrnet ?
...
1
vote
2answers
222 views
SolrNet Newbie - How to handle multiple Where Clauses
I just started exploring SolrNet. Previously I have been using MSSQL FULL TEXT.
In sql server, my query make full text searches and also have multiple joins and Where clauses. I am also using custom ...
1
vote
1answer
420 views
Solr search query for dynamic fields indexed
I am implementing the solr search in my project .
I have one question regarding how do i search a dynamic fields that is created in a solr index
Eg:- this is the tag that is formed in the index
And ...
1
vote
1answer
265 views
Boosting fields at query time in Standard Request Handler from Solrconfig.xml
I am developing a search engine app using Asp.Net, C# and Solrnet. I use the standard request handler. Is there a way I can boost the fields at query time from inside the solrconfig.xml file itself. ...
1
vote
1answer
302 views
Solr More Like This results narrowed down by facet field
I have a single Solr instance for indexing multiple sites content.
While indexing I am populating Website field to be able to perform faceted search on that field for every particular website...and ...
1
vote
1answer
282 views
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:
...
1
vote
2answers
556 views
Doesn't index or extract the Document (.pdf .doc) from Remotely
I have use Solr 3.1 , Apache Tika 0.9 and Solrnet 0.3.1 to index the
docuent like .doc , .pdf file.
I have successfully index and extract document on locally using this
code
...
1
vote
2answers
118 views
IDictionary<string, IDictionary<string, ICollection<string>>> To LINQ
I'm have been trying to convert the foreach statement below to a LINQ statement but can't seem to wrap my head around it. Any help would be welcome.
IDictionary<string, IDictionary<string, ...
1
vote
1answer
225 views
Field grouping in SolrNet?
I am trying to make a query in solr.net that generates a solr query with a filter query with more than one term in it e.g.: fq=Size:(4 large)
However, when I pass ?f_Size=(4 large) in the query ...
1
vote
4answers
326 views
How to implement faceted search suggestion with number of relevant items in Solr?
Hi
I have a very specific need in my company for the system's search engine, and I can't seem to find a solution.
We have a SOLR index of items, all of them have the same fields, with one of the ...
1
vote
1answer
347 views
Indexation of rich documents with solrnet
Can I index pdf documents with Solrnet ?
Is it possible to read content from a pdf and store it in in a field to indexation?
In fact, I would like store for example in a database a table who ...