Commit 21fd6180df61a168087757ff5f848dab9a3bcd32

Authored by Andrew Kane
1 parent 44d9cc07

Added OpenSearch to readme [skip ci]

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
@@ -45,11 +45,11 @@ Check out [Searchjoy](https://github.com/ankane/searchjoy) for analytics and [Au @@ -45,11 +45,11 @@ Check out [Searchjoy](https://github.com/ankane/searchjoy) for analytics and [Au
45 45
46 ## Getting Started 46 ## Getting Started
47 47
48 -[Install Elasticsearch](https://www.elastic.co/downloads/elasticsearch). For Homebrew, use: 48 +Install [Elasticsearch](https://www.elastic.co/downloads/elasticsearch) or [OpenSearch](https://opensearch.org/downloads.html) (OpenSearch support is experimental). For Homebrew, use:
49 49
50 ```sh 50 ```sh
51 -brew install elasticsearch  
52 -brew services start elasticsearch 51 +brew install elasticsearch # or opensearch
  52 +brew services start elasticsearch # or opensearch
53 ``` 53 ```
54 54
55 Add this line to your application’s Gemfile: 55 Add this line to your application’s Gemfile:
@@ -58,7 +58,7 @@ Add this line to your application’s Gemfile: @@ -58,7 +58,7 @@ Add this line to your application’s Gemfile:
58 gem 'searchkick' 58 gem 'searchkick'
59 ``` 59 ```
60 60
61 -The latest version works with Elasticsearch 6 and 7. For Elasticsearch 5, use version 3.1.3 and [this readme](https://github.com/ankane/searchkick/blob/v3.1.3/README.md). 61 +The latest version works with Elasticsearch 6 and 7 and OpenSearch 1. For Elasticsearch 5, use version 3.1.3 and [this readme](https://github.com/ankane/searchkick/blob/v3.1.3/README.md).
62 62
63 Add searchkick to models you want to search. 63 Add searchkick to models you want to search.
64 64