Re: Updating only one indexed field for all documents quickly.

2011-06-16 Thread Alexey Serba
>> with the integer field. If you just want to influence the >> score, then just plain external field fields should work for >> you. > > Is this an appropriate solution, give our use case? > Yes, check out ExternalFileField * http://search.lucidimagination.com/search/document/CDRG_ch04_4.4.4 * ht

Re: Updating only one indexed field for all documents quickly.

2011-06-14 Thread karthik
Look at solr-2272. It might help in your situation. you can have a separate core & join using the document unique id. This way in the separate core you can just have the document id & the view stats & you can just keep updating those 2 fields alone instead of the entire document. -- karthik On T

Re: Updating only one indexed field for all documents quickly.

2011-06-14 Thread Adam Duston
Hi Erick, Thanks for your message. > What is the use-case you're considering? The use case is actually quite similar to the one in the blog post. We have view counts for Videos in our mysql database. We want to be able to find "most viewed videos" that match certain search criteria. So, for exam

Re: Updating only one indexed field for all documents quickly.

2011-06-14 Thread Erick Erickson
Nope, there isn't a way to index a single field, it's always the entire document. That said, the URL you pointed to is very interesting, but it may be overkill depending upon what you want to do with the integer field. If you just want to influence the score, then just plain external field fields