Commit c938c59af617bcea4ed3ed1d6de198dce6286087

Authored by Andrew Kane
1 parent 2689f1c1

queues -> queuing [skip ci]

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
README.md
... ... @@ -470,9 +470,9 @@ There are four strategies for keeping the index synced with your database.
470 470  
471 471 And [install Active Job](https://github.com/ankane/activejob_backport) for Rails 4.1 and below. Jobs are added to a queue named `searchkick`.
472 472  
473   -3. Queues
  473 +3. Queuing
474 474  
475   - Push ids of records that need updated to a queue and reindex in the background in batches. This is more performant than the asynchronous method, which updates records individually. See [how to use](#queues).
  475 + Push ids of records that need updated to a queue and reindex in the background in batches. This is more performant than the asynchronous method, which updates records individually. See [how to set up](#queuing).
476 476  
477 477 4. Manual
478 478  
... ... @@ -1293,7 +1293,7 @@ And use:
1293 1293 Searchkick.reindex_status(index_name)
1294 1294 ```
1295 1295  
1296   -### Queues
  1296 +### Queuing
1297 1297  
1298 1298 You can also queue updates and do them in bulk for better performance. First, set up Redis in an initializer.
1299 1299  
... ...