RE: most popular/most commonly accessed records

2007-07-06 Thread Norskog, Lance
ulate relevance and boosts. Lance -Original Message- From: Karen Loughran [mailto:[EMAIL PROTECTED] Sent: Friday, July 06, 2007 6:59 AM To: solr-user@lucene.apache.org Subject: most popular/most commonly accessed records Hi all, Is there a way through solr to find out about "most commonl

Re: most popular/most commonly accessed records

2007-07-06 Thread Peter Manis
Maybe create a snippet of code in the page of the video information that if the page was accessed from search results it will increment a counter within a database (sqlite, mysql, etc). You can then update solr every so often (daily, hourly, twice a day, etc) and include the hits. This would the

Re: most popular/most commonly accessed records

2007-07-06 Thread Walter Underwood
Solr doesn't have a record of what documents were accessed. The document cache shows which documents were in the parts of search result list which were served, but probably not a count of those inclusions. Luckily, this information is trivial to get from HTTP server access logs. Look for documents

most popular/most commonly accessed records

2007-07-06 Thread Karen Loughran
Hi all, Is there a way through solr to find out about "most commonly accessed" solr documents ? So for example, my client may wish to list the top 10 most popular videos, based on previous accesses to them in the solr server db. If there are any solr features to help with this can someone poi