lucene/client/ruby/solrb
Erik Hatcher 8e82ba6386 Define Solr::Request first thing, allowing future simplification of the request class definitions
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@501319 13f79535-47bb-0310-9956-ffa450edef68
2007-01-30 06:07:43 +00:00
..
examples/marc add some additional facet mappings to MARC importer example 2007-01-24 02:57:50 +00:00
lib Define Solr::Request first thing, allowing future simplification of the request class definitions 2007-01-30 06:07:43 +00:00
solr Add support for new facet.prefix feature 2007-01-24 02:59:17 +00:00
test Add TODO note about perhaps replacing our mock with the use of flexmock. Not worth adding this dependency just yet, only when we feel pain in mocking later 2007-01-27 18:49:31 +00:00
CHANGES.txt tidy up documentation and add license, preparing for an 0.01 release 2007-01-24 16:16:01 +00:00
LICENSE.txt Remove Solr specific licenses, leaving it with only ASL for solrb 2007-01-24 16:52:48 +00:00
README Update example to use _text field name and have explicit require/include code too, suitable for copy/pasting right into irb to work it, and cleaned up output 2007-01-17 05:44:37 +00:00
Rakefile Cosmetic cleanup of Rakefile, adding descriptions for all publicly desirable tasks 2007-01-30 06:05:21 +00:00

README

solrb exposes the power of Solr as a Ruby  DSL (domain specific language).

  Visit the solrb wiki for more information: http://wiki.apache.org/solr/solrb

USAGE 

First launch Solr:

  cd solr
  java -jar start.jar

In a separate shell, launch {{{irb -Ilib}}}:

  require 'solr'  # load the library
  include Solr    # Allow Solr:: to be omitted from class/module references

  # connect to the solr instance
  conn = Connection.new('http://localhost:8983/solr', :autocommit => :on)

  # add a document to the index
  conn.add(:id => 123, :title_text => 'Lucene in Action')

  # update the document
  conn.update(:id => 123, :title_text => 'Solr in Action')

  # print out the first hit in a query for 'action'
  response = conn.query('action')
  print response.hits[0]

  # iterate through all the hits for 'action'
  conn.query('action') do |hit|
    puts hit.inspect
  end

  # delete document by id
  conn.delete(123)

INSTALLATION

First run the tests:

  rake
  
then build the gem:

  rake package

and install the versioned gem:

  gem install pkg/solr-x.x.x.gem 

LICENSE

This package is licensed using the Apache Software License 2.0.

<http://www.apache.org/licenses/LICENSE-2.0>