Re: [Ext] Influence ranking based on document committed date

2016-08-17 Thread Stefan Matheis
Erick already gave you the solution, additional to that there’s a wiki page that might contain a few more things about relevancy: https://wiki.apache.org/solr/SolrRelevancyFAQ#How_can_I_change_the_score_of_a_document_based_on_the_.2Avalue.2A_of_a_field_.28say.2C_.22popularity.22.29 -Stefan On

Re: [Ext] Influence ranking based on document committed date

2016-08-17 Thread Erick Erickson
Try: recip(rord(creationDate),1,1000,1000) See: https://wiki.apache.org/solr/FunctionQuery You can play with the magic numbers to influence how this scales your docs. Best, Erick On Wed, Aug 17, 2016 at 7:11 AM, Jay Parashar wrote: > This is correct: " I index it and feed

RE: [Ext] Influence ranking based on document committed date

2016-08-17 Thread Jay Parashar
This is correct: " I index it and feed it the timestamp at index time". You can sort desc on that field (can be a TrieDateField) -Original Message- From: Steven White [mailto:swhite4...@gmail.com] Sent: Wednesday, August 17, 2016 9:01 AM To: solr-user@lucene.apache.org Subject: [Ext]