Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Elasticsearch integrations for ActiveModel/Record and Ruby on Rails

License

NotificationsYou must be signed in to change notification settings

elastic/elasticsearch-rails

Ruby testsJRuby tests

This repository contains various Ruby and Rails integrations forElasticsearch:

  • ActiveModel integration with adapters for ActiveRecord and Mongoid
  • Repository pattern based persistence layer for Ruby objects
  • Enumerable-based wrapper for search results
  • ActiveRecord::Relation-based wrapper for returning search results as records
  • Convenience model methods such assearch,mapping,import, etc
  • Rake tasks for importing the data
  • Support for Kaminari and WillPaginate pagination
  • Integration with Rails' instrumentation framework
  • Templates for generating example Rails application

Elasticsearch client and Ruby API is provided by theelasticsearch-ruby project.

Installation

Install each library fromRubygems:

gem install elasticsearch-modelgem install elasticsearch-rails

Compatibility

The libraries are compatible with Ruby 3.0 and higher.

We follow Ruby’s own maintenance policy and officially support all currently maintained versions perRuby Maintenance Branches.

The version numbers follow the Elasticsearch major versions. Currently themain branch is compatible with version8.x of the Elasticsearch stack.

RubygemElasticsearch
0.11.x
2.x2.x
5.x5.x
6.x6.x
7.x7.x
8.x8.x
main8.x

Check outElastic product end of life dates to learn which releases are still actively supported and tested.

Usage

This project is split into three separate gems:

Example of a basic integration into an ActiveRecord-based model:

require'elasticsearch/model'classArticle <ActiveRecord::BaseincludeElasticsearch::ModelincludeElasticsearch::Model::Callbacksend# Index creation right at import time is not encouraged.# Typically, you would call create_index! asynchronously (e.g. in a cron job)# However, we are adding it here so that this usage example can run correctly.Article.__elasticsearch__.create_index!Article.import@articles=Article.search('foobar').records

You can generate a simple Ruby on Rails application with a single command(see theother available templates). You'll need to have an Elasticsearch cluster running on your system before generating the app. The easiest way of getting this set up is by running it with Docker with this command:

  docker run \    --name elasticsearch-rails-searchapp \    --publish 9200:9200 \    --env"discovery.type=single-node" \    --env"cluster.name=elasticsearch-rails" \    --env"cluster.routing.allocation.disk.threshold_enabled=false" \    --rm \    docker.elastic.co/elasticsearch/elasticsearch:7.6.0

Once Elasticsearch is running, you can generate the simple app with this command:

rails new searchapp --skip --skip-bundle --template https://raw.github.com/elasticsearch/elasticsearch-rails/main/elasticsearch-rails/lib/rails/templates/01-basic.rb

Example of using Elasticsearch as a repository for a Ruby domain object:

classArticleattr_accessor:titleendrequire'elasticsearch/persistence'repository=Elasticsearch::Persistence::Repository.newrepository.saveArticle.new(title:'Test')# POST http://localhost:9200/repository/article# => {"_index"=>"repository", "_id"=>"Ak75E0U9Q96T5Y999_39NA", ...}

Please refer to each library documentation for detailed information and examples.

Model

Persistence

Rails

Development

To work on the code, clone the repository and install all dependencies first:

git clone https://github.com/elastic/elasticsearch-rails.gitcd elasticsearch-rails/bundle installrake bundle:install

Running the Test Suite

You can run unit and integration tests for each sub-project by running the respective Rake tasks in their folders.

You can also unit, integration, or both tests for all sub-projects from the top-level directory:

rake test:all

The test suite expects an Elasticsearch cluster running on port 9250, andwill delete all the data.

License

This software is licensed under the Apache 2 license, quoted below.

Licensed to Elasticsearch B.V. under one or more contributorlicense agreements. See the NOTICE file distributed withthis work for additional information regarding copyrightownership. Elasticsearch B.V. licenses this file to you underthe Apache License, Version 2.0 (the "License"); you maynot use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing,software distributed under the License is distributed on an"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANYKIND, either express or implied.  See the License for thespecific language governing permissions and limitationsunder the License.

About

Elasticsearch integrations for ActiveModel/Record and Ruby on Rails

Topics

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors103


[8]ページ先頭

©2009-2025 Movatter.jp