Test-driving Apache SOLR (part 1)
Friday, May 2nd, 2008
Some of you read my previous posts The state of open source search. I will in this post go through the process of downloading, installing, configuring and using Apache SOLR to index some sample XML data and search it.
This is the first post in a series, where each new post will explore some new feature. We will simply follow the tutorial to get SOLR up and running locally.
We start by visiting the SOLR Tutorial for the first steps, and simply get the app running:
- Check Java version, download SOLR (I chose this file), unpack it, and cd to apache-solr-1.2.0/example
- java -jar start.jar
- Visit http://localhost:8983/solr/admin/ to see the admin page with a simple test GUI
- Try hit the search button, you get the XML response back with 0 results
- Now try indexing some content. CD to example/exampledocs
- java -jar post.jar solr.xml monitor.xml
- Now try searching again and see that you get some hits!
For part two we will get SOLR running in a Tomcat instance, customize the schema a bit and present search results in a custom web page using the client API.
Norweigan search portal Sesam.no releases middleware as GPL
Sunday, March 16th, 2008
In this blog post, Sesam annonces that their middleware architecture, Sesam Search Application Toolkit (SESAT) is released as open source software. This is the piece of software (written in Java) which sits between the portal (such as sesam.no) and the data sources (such as FAST ESP, Yahoo! or a database) and dispatches in parallel a single user query into multiple underlying requests and returns everything according to business rules. This is often referred to as federated search.
Here’s Sesam’s own description of the software:
“SESAT is search middleware and a search portal framework. SESAT enables a single user query to be dispatched to multiple information sources. The result is analysed, weighted and presented to the user according to configurable business rules.”
Congratulations with contributing to Open Source, Sesam! And good luck with creating a community around this important piece of middleware, we’ll see more and more demand for it in the future!
Now, go check it out on http://sesat.no/ if this is something that can be useful to you!
PS: Learn more about other federated search solutions at the federatedsearchblog.com
