SolrNet is an Apache Solr client for .NET
0
votes
2answers
22 views
Search word in string in Solr 4
On a solr 4, I'm making a query for a word "black" and it returns me the results of the only product that have exact word - "black" in the name & desc. I'm searching only on the name and ...
2
votes
1answer
26 views
Facet query will give wrong output on dynamicfield in solr
I have dynamicField as 'pa_mydynamicfieldname' in Solr 4.0
I have store value in this field as :
I have indexed my data by Encoding using System.Web.HttpUtility.UrlEncode(pa_mydynamicfieldname)
such ...
0
votes
0answers
31 views
How to return Search Result Score using Solrnet
We are using SolrNet API to Index and Search a set of documents. The corresponding POCO representing the Solr document is
internal class IndexDocument
{
[SolrField("DocId")]
public long DocId ...
1
vote
1answer
70 views
How do you update data in Solr 4?
We need to update the index of Solr 4 but are getting some unexpected results. We run a C# program that uses SolrNet to do an AddRange(). In this process, we're adding new documents and also trying to ...
0
votes
1answer
32 views
Ninject solrnet binding doubts
I am using Ninject for DI in my project. I am using solrnet for search functionality and I am trying to incorporate Solr to Ninject. Below is the code i have added in Global.asax
protected ...
0
votes
1answer
55 views
Post method in Solr.Net
I am using a solr.net in my C# application. To get the result I am using the below query in the solr.
solr.Query(query, queryOptions);
The problem is that, when we have a very long query and then ...
1
vote
1answer
47 views
Sort a facet field by index not count in Solr
I am trying to sort a facet field by 'index' and not by default 'count'. http://wiki.apache.org/solr/SimpleFacetParameters#facet.sort
I have facet fields such as Date, Places, Keywords. By default, ...
0
votes
1answer
42 views
Modifying sorting on a facet field from default “count” to “index” in Solrnet asp.net mvc
By default the sort on Solr facet fields is by "count" and not by "index". I have facet fields such as "date", "author", "places" etc. I want the default sort (sort by count/ sort = true) to be ...
1
vote
2answers
73 views
Solrnet not finding SolrField attribute
I am currently trying to integrate Solrnet with a project I am working on and I am unable to even get Solrnet to produce a document from a populated POCO. Below is an example of the POCOs i'm using
...
0
votes
3answers
174 views
Solr query syntax for array field
How do I search within an array field?
I am using solr 4.2 with default settings.
I indexed a few html and pdf documents using SolrNet. Here is a sample result for such a document when I search using ...
0
votes
1answer
51 views
solr pdf extraction works but no indexing
I working with solr to extract pdf files and index it. now I am able to extract it with the following code:
private static void IndexPDFFile(ISolrOperations<Article> solr)
{
string ...
1
vote
2answers
168 views
solr lazy loading error during pdf file extraction
I am working with solr to index pdf and doc files. I am working with the bitnami stack (http://bitnami.com/stack/solr)
now I add the following code to my c# app:
string filecontent = null;
...
0
votes
1answer
70 views
solr query over multiple fields doesn't work
I have the issue that I can not query over multiple fields. I read the following article about it and did the same thing:
Solr - Query over all fields best practise
here my schema file:
...
0
votes
2answers
86 views
solrnet query failed
I am trying to work with solr with c#. I installed a bitnami apache + solr stack and changed the schema.xml file. I tried the following example:
http://www.chrisumbel.com/article/solrnet_solr_net
...
2
votes
1answer
74 views
location type(solr) in C#
i have this field en my solr schema.xml
<field name="geocode"
type="location"
indexed="true"
stored="true"
multiValued="false" />
i wonder, what type of object ...
1
vote
0answers
42 views
How do I utilize Solrnet in a Master->Slave environment?
I am currently getting Solr implemented for our company to replace our GSA systems and am in the middle of implementation. I am using SolrNet for the client access code to interface with Solr via C#.
...
1
vote
1answer
72 views
Solrnet date conversion issue
We are using SolrNet API to Index and Search a set of documents which contains three date fields: Date1, Date2, Date3. The C# class has the following definitions for the three fields
public DateTime? ...
1
vote
1answer
49 views
Query for cores/core names or just query over all cores?
I'm making a program to search on many solr servers, and each server can have many cores which names are unknown to me. Is there any way I can query the server for the name of the cores using solrnet, ...
1
vote
1answer
132 views
Querying Solr while indexing causes loss documents from index
I'm wrote simple .NET Windows service, that pushes documents to Apache Solr v4.1. For access to Solr, I used SolrNet. My code is:
var solr = ...
0
votes
1answer
124 views
Solrnet equivalent for frange in a facet query for Distance
I have implemented Spatial Search and need to generate facets for ranges or 'buckets' of distance in Solr: the following link helped me here - ...
0
votes
0answers
61 views
How can i boost a field dynamically at index time using solrnet
Currently for index time field boosting i am using mapping attribute and giving a static boost like below.
[SolrUniqueKey("StudentID")]
public int JobseekerID { get; set; }
[SolrField("FName")]
...
0
votes
1answer
82 views
Solrnet q parameter issue with compound query
We are using Solrnet to issue a compound query to Solr based on a set of options that the user can select for e.g. phrase, exact phrase. exclusion, proximity, etc. We are creating the individual ...
0
votes
2answers
162 views
Indexing data inside database, with files stored on filesystem
I'm trying to use Apache Solr as fulltext search engine in my .NET app (via SolrNet).
My app has this data mode:
class Document
{
public int Id { get; set; };
public string Name { get; set; ...
0
votes
0answers
52 views
Please recommend Faceted query browser(UI framework) for SolrNet
I have implmented SolrNet after learning from your website http://code.google.com/p/solrnet/. Thanks a lot for the instructions!
However I am having trouble creating the Web UI or Faceted query ...
0
votes
0answers
47 views
How to give more more importance to a document if term match is more
My schema is like below.
<fields>
<dynamicField name="Subject-Name-*" type="string" indexed="true" stored="true"/>
<dynamicField name="Subject-Mark-*" type="int" ...
0
votes
1answer
38 views
Why a phrase is getting searched against default fields in solr
This might be a very silly question but i want to know why this is happening.
If i am using edismax query parser in solr and passing query something like below
...
1
vote
1answer
43 views
Search in dynamic fields
I have two dynamic fields like "Product-Name-*" *and "Product-Rating-*".
One document can contain 5 products and respective ratings like below.
<str name="Product-Name-0">HTC Wildfire ...
0
votes
2answers
57 views
Calculate score according to another indexed field?
My schema is like below
<fields>
<field name="ProductId" type="int" indexed="true" stored="true" />
<field name="ProductName" type="string" indexed="true" stored="true" ...
0
votes
1answer
32 views
Best way to perform search on several fields
I have to perform search on several fields for ex.(ProductName,ProductDescription,FeedBackOfProduct etc.).
Currently I have 2 approaches
1. I will copy all these searchable fields into one copy field ...
0
votes
2answers
69 views
How to search a phrase
I did one work around to get all documents that contains "Good" or "Microwave" or "Good Microwave",if i will pass "Good Microwave" as q parameter please guide me wheather i am going in right direction ...
2
votes
1answer
146 views
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 ...
0
votes
1answer
188 views
Return all search hits in the highlighted list in solr using solrnet
We are trying to execute a solr based search on the content of text files and the requirement is trying to return all the hits of the search term in each document along with the highlighted text ...
0
votes
3answers
128 views
Can SolrNet client run at a different machine from solr server?
I set up a solr server running in Tomcat in machine 192.168.0.113(Centos 5.5).
And I deploy a website in matchine 192.168.0.114(Windows server 2003).
I use solrnet in matchine 192.168.0.114.
The full ...
1
vote
3answers
233 views
How to get the suggester component working in SolrNet?
I have configured my solrconfig.xml and schema.xml to query for the suggestions.
I am able to get the suggestions from the url
http://localhost:8080/solr/collection1/suggest?q=ha&wt=xml
My ...
1
vote
1answer
136 views
SolrNet Combine SolrQueryByDistance and SolrQueryByField
I try the following:
Dim q = New SolrQueryByField("tag", keyword) With {.Quoted = False} Or New SolrQueryByField("cat", keyword) With {.Quoted = False} Or New SolrQueryByField("shortname", keyword) ...
1
vote
2answers
173 views
Can solr highlight two different search terms in two different color?
I am new to solr and have been asked to implement search result highlighting. My search query is something like this,
query = text like 'searchterm1' AND 'searchterm2'
Now I need to instruct solr to ...
0
votes
3answers
200 views
How to perform indexing/search on multiple tables in SolrNet
I am using SolrNet to index/search data on set of tables.
I have two tables Category and Item.
Both the tables have same fields, Hence i have a base mapping class form which i derive.
...
1
vote
0answers
65 views
Is there a way to integrate DataImportHandler with C#?
Just wanted to know is there any way to integrate DataImportHandler with C# application.
Currently my requirement is to get delta data from different tables and index it to solr for that i have ...
0
votes
0answers
75 views
solrnet in .net webservice
I have used solr in my web application and it is working fine. I am using solrnet.dll for using solr search. In web application I write the solrnet init code in global.asax in application_start and it ...
0
votes
1answer
37 views
Is there a way to import the js library file to my DIH script?
I am importing some data using DIH, I'd like to use script transformer in order to perform some transformations before indexing.
As the transformations are a bit complex I am using an external js ...
0
votes
2answers
76 views
Behavior of the OR clause in Solr
My solr index contains documents which have a field named department. This field is a multivalue non-required int field. I want to construct a query whose result must be union of
All the documents ...
0
votes
2answers
152 views
Solr: How to get Facets with matching keywords
I am not sure if this is possible or what's the best way to do it? How can I get facet count in Solr where it counts as in following example.
Let's say I have got following values equal to the number ...
1
vote
1answer
107 views
Solr: How to to search special character with priority
I am new to Solr and using it through SolrNet. When i send a search query for c#, it matches 'C,C++' as well.
How can I give the more priority to the results which have exact match 'C#' ?
Or please ...
0
votes
1answer
494 views
2
votes
1answer
206 views
How can I read and write the external file field in solr?
I am using External File field in solr for my frequently updated types of data. I had created a file _external_<myfieldTypename> in my Index directory. And my data is like :
4950 = 150.0
4951 = ...
0
votes
1answer
160 views
Solrnet/Tomcat 7 - writing several large documents memory consumption growing alarmingly
I am writing very large (both size and count) documents to a solr index(100s of fields with many numeric and some text fields) . I am using Tomcat 7 on W7 x64.
Based on @Maurico's suggestion when ...
1
vote
1answer
89 views
Could not convert value 'System.Collections.ArrayList' to property 'Specialisation'
I am getting Error:-Could not convert value 'System.Collections.ArrayList' to property 'Specialisation' of document type IKnowWhoKnowsSolrNet
MyCode
//Initialise the solrNet Client.
var solr ...
0
votes
0answers
90 views
How to get Solr 4.0 groupedresult based on unique values of multiple columns similar to SQL server group by multiple columns
I'm Using Solr 4.0 and SolrNet with DIH for SQL server. When I'm executing below query on SQL server its returning result as below:
SELECT
(DLDest.CityCode) AS 'DestCityCode',
Count(DLDest.CityCode) ...
0
votes
1answer
91 views
How we changes standard query handler
I am using solrnet I have created a new handler and want to change standard query handler "select" to "new" without using any extra parameter like "qt" or defType.
Currently
...
3
votes
2answers
234 views
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.
...

