Slingshot aims to provide a rich Ruby API and DSL for the ElasticSearch search engine/database.
ElasticSearch is a scalable, distributed, highly-available, RESTful database communicating by JSON over HTTP, based on Lucene, written in Java. It manages to be very simple and very powerful at the same time. You should seriously consider it to power search in your Ruby applications: it will deliver all the features you want — and many more you may have not imagined yet (native geo search? histogram facets for dates?)
Slingshot currently allows basic operation with the index and searching. More is planned.
First, you need a running ElasticSearch server. Thankfully, it's easy. Let's define easy:
$ curl -k -L -o elasticsearch-0.15.0.tar.gz http://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.15.0.tar.gz
$ tar -zxvf elasticsearch-0.15.0.tar.gz
$ ./elasticsearch-0.15.0/bin/elasticsearch -f
OK, easy. Now, install the gem via Rubygems:
$ gem install slingshot-rb
or from source:
$ git clone git://github.com/karmi/slingshot.git
$ cd slingshot
$ rake install
Currently, you can use Slingshot via the DSL (eg. by extending your class with it).
Plans for full ActiveModel integration (and other convenience layers) are in progress
(see the activemodel
branch).
To kick the tires, require the gem in an IRB session or a Ruby script
(note that you can run the full example from examples/dsl.rb
):
require 'rubygems'
require 'slingshot'
First, let's create an index named articles
and store/index some documents:
Slingshot.index 'articles' do
delete
create
store :title => 'One', :tags => ['ruby']
store :title => 'Two', :tags => ['ruby', 'python']
store :title => 'Three', :tags => ['java']
store :title => 'Four', :tags => ['ruby', 'php']
refresh
end
You can also create the index with specific mappings, such as:
Slingshot.index 'articles' do
create :mappings => {
:article => {
:properties => {
:title => { :type => 'string', :boost => 2.0, :analyzer => 'snowball' },
:content => { :type => 'string', :analyzer => 'snowball' },
:id => { :type => 'string', :index => 'not_analyzed', :include_in_all => false },
:url => { :type => 'string', :index => 'not_analyzed', :include_in_all => false },
:category => { :type => 'string', :analyzer => 'keyword', :include_in_all => false }
}
}
}
end
Now, let's query the database.
We are searching for articles tagged ruby, sorted by title
in descending
order,
and also retrieving some facets
from the database:
s = Slingshot.search 'articles' do
query do
terms :tags, ['ruby']
end
sort do
title 'desc'
end
facet 'global-tags' do
terms :tags, :global => true
end
facet 'current-tags' do
terms :tags
end
end
Let's display the results:
s.results.each do |document|
puts "* #{ document.title }"
end
# * Two
# * One
# * Four
Let's display the facets (distribution of tags across the whole database):
s.results.facets['global-tags']['terms'].each do |f|
puts "#{f['term'].ljust(10)} #{f['count']}"
end
# ruby 3
# python 1
# php 1
# java 1
We can display the full query JSON:
puts s.to_json
# {"facets":{"current-tags":{"terms":{"field":"tags"}},"global-tags":{"global":true,"terms":{"field":"tags"}}},"sort":[{"title":"desc"}],"query":{"terms":{"tags":["ruby"]}}}
See, a Ruby DSL for this thing is kinda handy?
You can display the corresponding curl
command easily:
puts s.to_curl
# curl -X POST "http://localhost:9200/articles/_search?pretty=true" -d '{"facets":{"current-tags":{"terms":{"field":"tags"}},"global-tags":{"global":true,"terms":{"field":"tags"}}},"sort":[{"title":"desc"}],"query":{"terms":{"tags":["ruby"]}}}'
Currently, Slingshot supports only a limited subset of vast ElasticSearch Search API and it's Query DSL:
- Creating, deleting and refreshing the index
- Storing a document in the index
- Querying the index with the
query_string
,term
andterms
types of queries - Sorting the results by
fields
- Retrieving a terms type of facets -- other types are high priority
- Returning just specific
fields
from documents - Paging with
from
andsize
query options
See the examples/dsl.rb
.
Slingshot wraps the results in a enumerable Results::Collection
class, and every result in a Results::Item
class,
which looks like a child of Hash
and Openstruct
.
You may wrap the result items in your own class by setting the Configuration.wrapper
property.
Check out file test/unit/results_collection_test.rb
to see how to do that.
In order of importance:
- Seamless ActiveModel compatibility for easy usage in Rails applications (this also means nearly full ActiveRecord compatibility). See the
activemodel
branch - Seamless will_paginate compatibility for easy pagination
- Mapping definition for models
- Proper RDoc annotations for the source code
- Dual interface: allow to simply pass queries/options for ElasticSearch as a Hash in any method
- Histogram facets
- Seamless support for auto-updating river index for CouchDB
_changes
feed - Infrastructure for query filters
- Range filters and queries
- Geo Filters for queries
- Statistical facets
- Geo Distance facets
- Index aliases management
- Analyze API support
- Highligting support
- Bulk API
- Embedded webserver to display statistics and to allow easy searches
Check out other ElasticSearch clients.
You can send feedback via e-mail or via Github Issues.