Re: Storing Ranking Scores And Documents In Separate Indices

2018-04-05 Thread Erick Erickson
Also, Solr has updateable docValues fields (single-valued only) that may be another alternative. Best, Erick On Thu, Apr 5, 2018 at 1:59 PM, Markus Jelsma wrote: > Hello Quynh, > > Solr has support for external file fields [1]. They are a simple key=float > based text file where key is ID, and

RE: Storing Ranking Scores And Documents In Separate Indices

2018-04-05 Thread Markus Jelsma
Hello Quynh, Solr has support for external file fields [1]. They are a simple key=float based text file where key is ID, and the float can be used for boosting/scoring documents. This is a much simpler approach than using a separate collection. These files can be reloaded every commit and are r