1 / 14

Apache Solr

Apache Solr. We zijn toch allemaal zoekende?. Inhoud. Wat is Apache Solr Configuratie Gebruik ANP Portal SolrAS Vragen. Wat is Apache Solr.

cruz
Download Presentation

Apache Solr

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Apache Solr We zijn toch allemaal zoekende?

  2. Inhoud • Wat is Apache Solr • Configuratie • Gebruik • ANP Portal • SolrAS • Vragen

  3. Wat is Apache Solr “Solris een open source enterprise search server gebaseerd op de Lucene Java search library, met XML/HTTP APIs, caching, replicatie, en eenweb administratieinterface.”

  4. En verder… • Java 5 Web Applicatie • Lucene Search Library • Gebouwd door CNET • Apache software project sinds 2007 • Huidige versie 1.3 • 1.4 komt er aan

  5. En verder… • Indexeren en zoeken middels HTTP • Web interface voor admin interface • Schaalbaar d.m.vReplication • Plugin systeem • Ingebouwde caching • Facetten • Highlighting • Uitgebreide configuratie instellingen • requesthandlers • schema • Analyzers en tokenizers

  6. En wat nu? • Tutorial op http://lucene.apache.org/solr/tutorial.html • Stapjes • cd example • javajarstart.jar • http://localhost:8983/solr/ • cd example/exampledocs • javajarpost.jar*.xml

  7. Out of the box

  8. Configuratie met pointybrackets • Schema.xml • Hierin wordt de geindexeerde data beschreven • SolrConfig.xml • Hierin wordt beschreven hoe je er bij kan komen

  9. Gebruik • Toevoegen met http POST • Ophalen met http GET

  10. Input… • Post naarsolr/update • Voorbeeld: • <add><doc> • <field name="id">SOLR</field> • <field name="name">Apache Solr</field> • </doc></add> • <delete><id>SP2514N</id></delete> • <delete><query>name:DDR</query></delete> • Nietvergetentecommitten

  11. Data er uit… • Query mechanisme met HTTP GET • http://solr/select?q=electronics • <response> • <lst name="responseHeader"> • <int name="status">0</int> • <int name="QTime">1</int> • </lst> • <result name="response" numFound="14" start="0"> • <doc> • <arr name="cat"> • <str>electronics</str> • <str>connector</str> • </arr> • <arr name="features"> • <str>car power adapter, white</str> • </arr> • <str name="id">F8V7067APLKIT</ • str>…

  12. ANP Portal • Demo

  13. SolrAS • Open SourceAction Script library voor Solr • Gepoort vanuit SolrJ Java Client • Open source op http://code.google.com/p/solras/ • Kijkje in de keuken

  14. Vraagteken?

More Related