Re: Custom user web interface for Solr

2016-11-07 Thread tesm...@gmail.com
Dear Erik, Thanks for your reply. A month wise bar graph of the popularity of a hotel from search results. These graphs will be generated from the search results and will be displayed on an on-demand basis. Regards, On Fri, Nov 4, 2016 at 8:53 PM, Erik Hatcher wrote:

Re: Custom user web interface for Solr

2016-11-04 Thread Erik Hatcher
What kind of graphical format? > On Nov 4, 2016, at 14:01, "tesm...@gmail.com" wrote: > > Hi, > > My search query comprises of more than one fields like search string, date > field and a one optional field). > > I need to represent these on the web interface to the users. >

Re: Custom user web interface for Solr

2016-11-04 Thread Alexandre Rafalovitch
Unless you secure Solr instance well, you should not be exposing your Solr directly to the client. Anyone who can see Admin UI or /browse handle can also delete all your documents. I am mentioning this just in case. So, you usually need a middleware that maps your requests to Solr. Either with

Re: Custom user web interface for Solr

2016-11-04 Thread KRIS MUSSHORN
https://cwiki.apache.org/confluence/display/solr/Velocity+Search+UI You might be able to customize velocity. K - Original Message - From: "Binoy Dalal" <binoydala...@gmail.com> To: solr-user@lucene.apache.org Sent: Friday, November 4, 2016 2:33:24 PM Subject: Re:

Re: Custom user web interface for Solr

2016-11-04 Thread Binoy Dalal
See this link for more details => https://lucidworks.com/blog/2015/12/08/browse-new-improved-solr-5/ On Sat, Nov 5, 2016 at 12:02 AM Binoy Dalal wrote: > Have you checked out the /browse handler? It provides a pretty rudimentary > UI for displaying the results. It is

Re: Custom user web interface for Solr

2016-11-04 Thread Binoy Dalal
Have you checked out the /browse handler? It provides a pretty rudimentary UI for displaying the results. It is nowhere close to what you would want to present to your users but it is a good place to start off. On Fri, Nov 4, 2016 at 11:32 PM tesm...@gmail.com wrote: Hi, My

Custom user web interface for Solr

2016-11-04 Thread tesm...@gmail.com
Hi, My search query comprises of more than one fields like search string, date field and a one optional field). I need to represent these on the web interface to the users. Secondly, I need to represent the search data in graphical format. Is there some Solr web client that provides the above