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 something with spring.io Solr Data (somewhat restricting
but easy to start) or other ways.

Still, the other part of your question is whether it is possible to
Solr several distinct fields and have it compose corresponding
queries. I've done similar things for contact database using Switch
operator, which made the middleware embarrassingly simple. You can see
the configuration for that:
https://gist.github.com/arafalov/5e04884e5aefaf46678c

Regards,
    Alex.
----
Solr Example reading group is starting November 2016, join us at
http://j.mp/SolrERG
Newsletter and resources for Solr beginners and intermediates:
http://www.solr-start.com/


On 5 November 2016 at 05:01, tesm...@gmail.com <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.
>
> Secondly, I need to represent the search data in graphical format.
>
> Is there some Solr web client that provides the above features or Is there
> a way to modify the default Solr Browse interface and add above options?
>
>
>
>
>
> Regards,

Reply via email to