Commit fd4e1ed1509d7583b10fa551ba4ae1b0b4fd735d
1 parent
20a4f04f
Exists in
master
and in
19 other branches
Updated readme [skip ci]
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
README.md
... | ... | @@ -1184,15 +1184,15 @@ Searchkick.reindex_status(index_name) |
1184 | 1184 | |
1185 | 1185 | ### Refresh Interval |
1186 | 1186 | |
1187 | -You can specify a longer refresh interval while reindexing to increase performance. | |
1187 | +You can set a longer refresh interval while reindexing to increase performance. | |
1188 | 1188 | |
1189 | 1189 | ```ruby |
1190 | 1190 | Product.reindex(refresh_interval: "30s") |
1191 | 1191 | ``` |
1192 | 1192 | |
1193 | -Once completed, it’ll be restored to the value specified in your mapping (defaults to `1s`). | |
1193 | +Once completed, it’ll be restored to the value in your mapping (defaults to `1s`). | |
1194 | 1194 | |
1195 | -For parallel reindexing, specify this during promotion. | |
1195 | +For parallel reindexing, during promotion, use: | |
1196 | 1196 | |
1197 | 1197 | ```ruby |
1198 | 1198 | Product.search_index.promote(index_name, update_refresh_interval: true) | ... | ... |