Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Where are those objects of yours stored? </p> <p>You can use <a href="http://wiki.apache.org/solr/IntegratingSolr" rel="nofollow">API</a> (java, python, ruby, js, scala, perl, PHP and even .NET) to send data to Solr directly from your source code.</p> <p>Regardless of programming language, you can use standard HTTP POST to push XML, CSV, or <a href="http://wiki.apache.org/solr/UpdateJSON" rel="nofollow">JSON</a> documents to Solr. <br> See <a href="http://wiki.apache.org/solr/SolrRequestHandler#List_of_Request_Handlers_Available" rel="nofollow">here</a> for all update request handlers (who handles your request on Solr server) wiki pages.<br> And <a href="http://lucene.apache.org/solr/api/org/apache/solr/request/SolrRequestHandler.html" rel="nofollow">here</a> to check out (javaDoc) which classes implement SolrRequestHandler. </p> <p>If you have some kind of RESTfull service or standard web service that can return XML, you have the option to use <a href="http://wiki.apache.org/solr/DataImportHandler" rel="nofollow">DataImportHandler</a> to read from that source. It is then used in combination with <a href="http://wiki.apache.org/solr/DataImportHandler#XPathEntityProcessor" rel="nofollow">XPathEntityProcessor</a>, which would avoid you having to parse your XMLs manually.</p> <p>Whichever way you choose to go, first you need to prepare Solr schema.xml (add your Title, ID and Text fields) so Solr knows how to index your data.</p> <p>And before all this I suggest you go through <a href="http://lucene.apache.org/solr/tutorial.html" rel="nofollow">Solr quick start tutorial</a>.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload