Re: most searched keyword in solr

2008-09-25 Thread Walter Underwood
I process our HTTP logs. I'm sure there are log analyzers that handle search terms, though I wrote a bit of Python to do it. If you extract the search queries to a file, then use a Unix pipe to get a list: sort < queries.txt | uniq -c | sort -rn > counted-queries.txt wunder On 9/25/08 12:29 AM

Re: most searched keyword in solr

2008-09-25 Thread Jon Baer
Why even do any of the work :-) Im not sure any of the free analytic apps (ala Google) can but the paid ones do, just drop the query into one of those and let them analyze ... http://www.google.com/analytics/ Then just parse the reports. - Jon On Sep 25, 2008, at 8:39 AM, Mark Miller wro

Re: most searched keyword in solr

2008-09-25 Thread Mark Miller
sanraj25 wrote: hi, how will we find most searched keyword in solr? If anybody can suggest us a good solution, it would be helpful thank you with Regards, P.Parkavi Write some code to record every query/keyword. Could be done at different places depending on how you define 'keyword' compar