Commit 2b291f1640414ab72e93ab8440c7681c06fddf17
1 parent
2bf508e7
Exists in
master
and in
1 other branch
Updated readme [skip ci]
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
README.md
... | ... | @@ -679,7 +679,7 @@ end |
679 | 679 | |
680 | 680 | Reindex and set up a cron job to add new conversions daily. For zero downtime deployment, temporarily set `conversions: false` in your search calls until the data is reindexed. |
681 | 681 | |
682 | -For a more performant way to reindex conversion data, check out [performant conversions](#performant-conversions). | |
682 | +For a performant way to reindex conversion data, check out [performant conversions](#performant-conversions). | |
683 | 683 | |
684 | 684 | ## Personalized Results |
685 | 685 | |
... | ... | @@ -1616,7 +1616,7 @@ end |
1616 | 1616 | |
1617 | 1617 | Deploy and reindex your data. For zero downtime deployment, temporarily set `conversions: false` in your search calls until the data is reindexed. |
1618 | 1618 | |
1619 | -To populate conversions, create a job to update the column and reindex records with new conversions. | |
1619 | +Create a job to update the conversions column and reindex records with new conversions. | |
1620 | 1620 | |
1621 | 1621 | ```ruby |
1622 | 1622 | class ReindexConversionsJob < ApplicationJob |
... | ... | @@ -1658,7 +1658,7 @@ end |
1658 | 1658 | Run the job with: |
1659 | 1659 | |
1660 | 1660 | ```ruby |
1661 | -ReindexConversionsJob.perform_later("Product") | |
1661 | +ReindexConversionsJob.perform_now("Product") | |
1662 | 1662 | ``` |
1663 | 1663 | |
1664 | 1664 | And set it up to run daily. | ... | ... |