= ActiveGroonga plugin for Ruby on Rails == Setup You need to write RAILS_ROOT/config/groonga.yml like the following: development: database: db/development.groonga test: database: db/test.groonga production: database: db/production.groonga == Model Here is some examples. app/model/post.rb: class Post < ActiveGroonga::Base belongs_to :users end app/model/user.rb: class User < ActiveGroonga::Base has_many :posts end