I have a Solr 3.1 database containing Emails with two fields:
- datetime
- text
For the query I have two parameters:
- date of today
- keyword array("important thing", "important too", "not so important, but more than average")
Is it possible to create a query to
- get ALL documents of this day AND
- sort them by relevancy by ordering them so that the email with contains most of my keywords(important things) scores best?
The part with the date is not very complicated:
fq=datetime[YY-MM-DDT00:00:00.000Z TO YY-MM-DDT23:59:59.999Z]
I know that you can boost the keywords this way:
q=text:"first keyword"^5 OR text:"second one"^2 OR text:"minus scoring"^0.5 OR text:"*"
But how do I only use the keywords to sort this list and get ALL entries instead of doing a realy query and get only a few entries back?
Thanks for help!