Re: Query Keyword Storage

2015-10-11 Thread Imtiaz Shakil Siddique
Hi Erik, Thank you for the solution. I'll surely give it a try. But I was trying to collect the logs directly from Solr source base (maybe by extending the edismax query parser) because that way I don't have to write query keywords into log files. After that I want to feed that data into Banana

Re: Query Keyword Storage

2015-10-09 Thread Erik Hatcher
There’s no built-in query log handling, other than the (jetty) request logs. More and more these days, folks are logging directly or processing log files back into Solr, in a separate collection, and driving analytics from that. You can do a lot with logstash + banana

Query Keyword Storage

2015-10-09 Thread Imtiaz Shakil Siddique
Hi, I'd like to know is there any built-in feature/plugin in solr that can store user query . I know that I can always check the jetty server's log files which ships with solr for collecting user query. But is there any other better way? And If I needed to write a plugin for this case, what