Commit d88f1cdf57bb4707eaee8fb4503f5da712bd78ed
1 parent
c82703d4
Exists in
master
and in
19 other branches
Added contents [skip ci]
Showing
2 changed files
with
15 additions
and
4 deletions
Show diff stats
CHANGELOG.md
README.md
... | ... | @@ -29,7 +29,18 @@ Plus: |
29 | 29 | |
30 | 30 | **Searchkick 2.0 was just released!** See [notable changes](#200). |
31 | 31 | |
32 | -## Get Started | |
32 | +## Contents | |
33 | + | |
34 | +- [Getting Started](#getting-started) | |
35 | +- [Querying](#querying) | |
36 | +- [Indexing](#indexing) | |
37 | +- [Aggregations](#aggregations) | |
38 | +- [Deployment](#deployment) | |
39 | +- [Performance](#performance) | |
40 | +- [Elasticsearch DSL](#advanced) | |
41 | +- [Reference](#reference) | |
42 | + | |
43 | +## Getting Started | |
33 | 44 | |
34 | 45 | [Install Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/setup.html). For Homebrew, use: |
35 | 46 | |
... | ... | @@ -73,7 +84,7 @@ end |
73 | 84 | |
74 | 85 | Searchkick supports the complete [Elasticsearch Search API](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html). As your search becomes more advanced, we recommend you use the [Elasticsearch DSL](#advanced) for maximum flexibility. |
75 | 86 | |
76 | -### Queries | |
87 | +## Querying | |
77 | 88 | |
78 | 89 | Query like SQL |
79 | 90 | |
... | ... | @@ -381,7 +392,7 @@ And use: |
381 | 392 | Product.search "🍨🍰", emoji: true |
382 | 393 | ``` |
383 | 394 | |
384 | -### Indexing | |
395 | +## Indexing | |
385 | 396 | |
386 | 397 | Control what data is indexed with the `search_data` method. Call `Product.reindex` after changing this method. |
387 | 398 | ... | ... |