Skip to content

nz/solrmapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SolrMapper

An ORM for Solr documents.

Build Status

Installation & Configuration

Currently, SolrMapper is under active development, and is not ready even for beta use. That said, if you're interested in living on the bleeding edge, you can install the gem from source.

Gemfile
gem 'solrmapper', :git => 'git://github.com/nz/solrmapper.git'

Indexing documents

You can use the SolrMapper::Document class directly…

doc = SolrMapper::Document.new(
  :title => "Hello world!",
  :content => "My name is Frederick."
)
doc.save

SolrMapper::Document feels a lot like ActiveRecord. And, indeed, it is build on many of the same fundamentals provided by ActiveModel and ActiveSupport.

Use your own classes

class Document < SolrMapper::Document
end

doc = Document.create(
  :title => "TPS Report #3423"
)

Solr field names

The attribute names given to your documents are expected to match the definitions in your Solr schema.xml.

Coming soon...

Searching for documents

Simple search

Just give your query to the search class method.

@search = Document.search('hello world')

Filter queries and other Solr paramters

You can also provide the search class method with a hash that will be serialized into Solr parameters. If you're familiar with Solr, then this is just the method you're looking for.

@search = Document.search(
  :q => 'hello world',
  :fq => { :category => 'Cheerful' }
)

Chainable search methods

@search = Document.search('hello world').
                   where(category: 'Cheerful').
                   facet(field: 'category').
                   mm(1)

First-class facets

@search = Document.facet(fields: %w(category author))

@search.facets.each do |facet|
  puts facet.field
  facet.terms.each do |term, count|
    puts "  #{term}: #{count}"
  end
  puts
end

The above would print something like the following...

Category
  Cheerful: 23
  Gloomy: 12
Author
  e.e. cummings: 14
  T.S. Eliot: 10

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages