Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change 
notification.

The following page has been changed by DanielAndersson:
http://wiki.apache.org/solr/mySolr

The comment on the change is:
do -> to

------------------------------------------------------------------------------
  
  = Architecture =
  == Production ==
- Typically it's not recommended do have your front end users/clients hitting 
Solr directly as part of an HTML form submit ... the more conventional way to 
think of it is that Solr is a backend service, which your application can talk 
to over HTTP -- if you were dealing with a database, you wouldn't  expect that 
you could generate an HTML form for your clients  and then have them submit 
that form in some way that resulted in their browser using JDBC (or ODBC) to 
communicate directly with your database, their client would communicate with 
your App, which would validate their input, impose some security checks on the 
input, and then execute the underlying query to your database -- working with 
Solr should be very similar, it just so happens that instead of using JDBC or 
some other binary protocol, Solr uses HTTP, and you *can* talk to it directly 
from a web browser, but that's really more of a debugging feature then anything 
else. 
+ Typically it's not recommended to have your front end users/clients hitting 
Solr directly as part of an HTML form submit ... the more conventional way to 
think of it is that Solr is a backend service, which your application can talk 
to over HTTP -- if you were dealing with a database, you wouldn't  expect that 
you could generate an HTML form for your clients  and then have them submit 
that form in some way that resulted in their browser using JDBC (or ODBC) to 
communicate directly with your database, their client would communicate with 
your App, which would validate their input, impose some security checks on the 
input, and then execute the underlying query to your database -- working with 
Solr should be very similar, it just so happens that instead of using JDBC or 
some other binary protocol, Solr uses HTTP, and you *can* talk to it directly 
from a web browser, but that's really more of a debugging feature then anything 
else. 
  == Development ==
  This document describes how to create and deploy your custom solr server 
based on an out-of-the-box solr distribution. We will use Apache Ant for the 
deployment and possible patching of standard solr files. 
  

Reply via email to