A week of Lucene & Solr

Tuesday, June 9th, 2009

I was in SF, California last week to dig deeper into Solr and to meet with its core developers (now working for Lucid Imagination). It was a great week with many new connections and new insight.

lucid-imagination-logoFirst of all, as you may know, Lucid Imagination is at the moment the primary commercial marketers, promotors and evangelists for Solr. They bring to the scene what an open source offering often lacks – a professional and polished image, nice wrapping and not least – commercial support. That is great for the future adoption of Solr with customers that need just that kind of safety. Being Lucid’s Norwegian parner, Cominvent AS now offers all of this in Norway as well.

(more…)

Cominvent AS provides professional support for Lucene/Solr

Wednesday, March 4th, 2009

So you are thinking of adopting open source search Solr or Lucene, but are reluctant because of the lack of support fom the open source world?

Or perhaps you are already using Apache Solr or Lucene in your organization, and would like to have an expert partner to support you with your current solution and to help you refine your search solution to better fit your needs and to give better results and performance.

We at Cominvent AS are experts in search and experts in Apache Solr and Lucene. But being a small organization we have not offered support contracts until now. We are now pleased to announce that Cominvent AS, through our partnership with Lucid Imagination, can offer you commercial support, consulting and training. Lucid Imagination was the first commercial entity to offer professional paid support for the Apache Lucene and Solr products, and some of the most skilled coders and engineers are associated with them.

Please contact us for a talk about your needs.

Apache Solr has become grown-up

Wednesday, March 4th, 2009

The open source search server Solr from Apache Foundation has become a mature technology ready for prime-time.

The recent editions has added features which previously were only found in commercial offerings, such as

  • Automatic replication for large installations with distributed search
  • Java-API (SolrJ)
  • Conversion of Office-documents
  • Full faceted search
  • Advanced tokenization, highlighting and stemming

Apache Solr is being adopted more widely, and some companies even start replacing their expensive commercial engine with Solr with good results. In that way they can spend less on licenses and more on content quality and tuning.

Feeling ready to try Solr? Contact us for a talk, or download it yourself and try the tutorial. Here’s a short video introducing you to the basics:

I will soon write about how to obtain professional support for Apache Solr.

Test-driving Apache SOLR (part 1)

Friday, May 2nd, 2008

SOLR Logo white bgSome 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:

  1. Check Java version, download SOLR (I chose this file), unpack it, and cd to apache-solr-1.2.0/example
  2. java -jar start.jar
  3. Visit http://localhost:8983/solr/admin/ to see the admin page with a simple test GUI
  4. Try hit the search button, you get the XML response back with 0 results
  5. Now try indexing some content. CD to example/exampledocs
  6. java -jar post.jar solr.xml monitor.xml
  7. 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.