solrnet

How to get Started with Solr.NET

本小妞迷上赌 提交于 2019-11-28 09:15:31
Hey I was wondering how to get started with Solr.NET even the basics what files to download etc, I checked the net ofcourse but its like every site saying something different some are older so just not sure. Cheers Mauricio Scheffer See these questions: Is Solr available for .Net? How to install SOLRNET See SolrNet docs , it contains several code samples. And if you're just starting out with Solr, see the Solr tutorial and docs . 来源: https://stackoverflow.com/questions/5646615/how-to-get-started-with-solr-net

Difference between StandardTokenizerFactory and KeywordTokenizerFactory in Solr?

十年热恋 提交于 2019-11-28 07:02:56
问题 I am new to Solr.I want to know when to use StandardTokenizerFactory and KeywordTokenizerFactory ? I read the docs on Apache Wiki, but I am not getting it. Can anybody explain the difference between StandardTokenizerFactory and KeywordTokenizerFactory ? 回答1: StandardTokenizerFactory :- It tokenizes on whitespace, as well as strips characters Documentation :- Splits words at punctuation characters, removing punctuations. However, a dot that's not followed by whitespace is considered part of a

Use function query for boosting score in Solr

牧云@^-^@ 提交于 2019-11-28 01:19:39
问题 I working on a Solr 4 for optimizing my solr results rank based on popularity rank stored in Index. Now when someone searches, apart from relevancy rank, I want to influence relevancy rank using popularity rank. The simplest formula could be: new relavancy rank = score * popularityrank I have been looking at Solr function query at http://wiki.apache.org/solr/FunctionQuery#product to achieve the same however, I'm not sure how to get it to work. I didn't get how to get score multiplied using

Solr search query for dynamic fields indexed

♀尐吖头ヾ 提交于 2019-11-27 23:04:43
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 I am trying to search from solr using this query Employee_* = 172 Please help me in this if the way of searching is incorrect. In your queries, you need to define exactly what concrete fields you want to search, e.g. Employee_a , Employee_b (or whatever dynamic fields you've used). You can't search in all dynamic fields by using wildcards in a field name in queries. Here's a work-around : create a

Solr Index appears to be valid - but returns no results

时光总嘲笑我的痴心妄想 提交于 2019-11-27 16:08:00
问题 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 search using a test keyword I do not get any results back. On entering * : * into the query (in Solr admin page) I get all the results. However, when I enter any other query (e.g. a term or phrase) I get no results. I have verified that the field being queried is Indexed and contains the values I am

Solr Text field and String field - different search behaviour

佐手、 提交于 2019-11-27 12:23:41
问题 I am working on Solr 4+. I have several fields into my solr schema with different solr field types. Does the search on text field and string field differs? Because I am trying to search on string field (which is a copy field of few facet fields) which does not work as expected. The destination string field is indexed and stored both. However, when I change destination field which a text field (only indexed), it works fine. Can you suggest why this happens? What is exactly the difference

How to get Started with Solr.NET

痞子三分冷 提交于 2019-11-27 02:45:28
问题 Hey I was wondering how to get started with Solr.NET even the basics what files to download etc, I checked the net ofcourse but its like every site saying something different some are older so just not sure. Cheers 回答1: See these questions: Is Solr available for .Net? How to install SOLRNET See SolrNet docs, it contains several code samples. And if you're just starting out with Solr, see the Solr tutorial and docs. 来源: https://stackoverflow.com/questions/5646615/how-to-get-started-with-solr

Solr search query for dynamic fields indexed

寵の児 提交于 2019-11-26 23:15:10
问题 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 I am trying to search from solr using this query Employee_* = 172 Please help me in this if the way of searching is incorrect. 回答1: In your queries, you need to define exactly what concrete fields you want to search, e.g. Employee_a , Employee_b (or whatever dynamic fields you've used). You can't