Good day,
If I have for example the documents which have the following fields
Person_name - Birthday
Jordan - 2009-06-15
Marc - 2009-01-01
Marcos - 2009-01-01
Marcissh_something_something - 2009-06-15
Marcos - 2009-12-31
And upon searching for Person_name:Marc* I got ... |
I want to fire up a query in luke for luncene indexed document. I want to sort the results before they are fetched. What is the lucene syntax to sort the ... |
For example, if I have enumeration with "good", "better", "the best" values, I want to sort my search results by field that holds one of this values in string representation.
I have ... |
I have within my SOLR index song objects which belong to a higher level album object. An example is shown below:
<song>
<album title>Blood Sugar Sex Magic</album title>
<song title>Under the Bridge</song title>
<description>A sad ...
|
I need to sort query results by the output of some function which takes "score" and couple other fields as an input (50% of the total score comes from similarity score ... |
I've been asked to do an evaluation of Solr as an alternative for a commercial search engine.
The application now has a very particular way of sorting results using something called "buckets".
I'll ... |
Hi
I have document with fields like (title, content, datetime)
I want to sort the results with the following formula
1) title boosts 2.5
2) content boost 1.5
3) IMPORTANT (boost those documents that is newer ... |
|
I'm trying to sort a solr query by a field ignoring stopwords, but can't seem to find a way to do that. For example, I want the results to be ... |
I have solr query that simply returns the most recent items in the index. However I'm trying to optionally if categories are passed in have it the category field weighted such ... |
I am upgrading Lucene 2.4.1 to 3.0.2. My problem is, in lucene 2.4.1 we can pass
ScoreDoc to compare method. like below
public int compare(ScoreDoc i, ScoreDoc j) {
... |
I am using an XSLT to sort a piece of XML such as:
<feed>
<entry>
<title>A To Z</title>
</entry>
<entry>
...
|
solr sorts strings with space as the first one. if it has to sort " sim", "albert", "bim". the results are:
sim
albert
bim
since sim has space at the begining it will be ... |
I'm using Solr for a realtime search index. My dataset is about 60M large documents. Instead of sorting by relevance, I need to sort by time. Currently I'm using the sort ... |
I am trying to sort my search results by a custom Umbraco property I have created - let's call it sortDate.
Inside my IndexSet, in config/ExamineIndex.config I have this:
<IndexUserFields>
...
|
I want to order the Products to wheter a specific word is in the name and then to popularity. All Products that have the word in the name should be displayed ... |
I am using SOLR 3.1. but I feel that "Relevance Sorting" is not working properly. I read that if we are not sorting then by default SOLR use "Relevance Sort" for ... |
I am trying to specify sort on a String field in my query but seeing memory issues since the index has around 50M docs.
Why is that Solr actually sorts the ... |
Have a field title field with the definition
<field name="title" type="text" indexed="true" stored="true"/>
I want to display the results order by score and if it is tied order by title as the secondary ... |
I am trying to sort the search results of Lucene search engine from highest to lowest.
For example:
I am searching for 2 words: lucene and java
Searching for 'lucene'
3 results found
ppp.txt
nnn.txt
mmm.txt
Searching ...
|
Using bobo-browse MultiValueFacetHandler to gather multi-valued faceted results, how do I sort these facets by the top-scoring document in each facet?
For example, if:
- Document d1 has facets f1 and ...
|