Commit a01a04af13637f0eebf3918e1046642c9925545c
1 parent
f546077b
Exists in
master
and in
21 other branches
Updated readme
Showing
1 changed file
with
3 additions
and
5 deletions
Show diff stats
README.md
... | ... | @@ -59,11 +59,9 @@ You must call `Product.reindex` after changing synonyms. |
59 | 59 | |
60 | 60 | ### Make Searches Better Over Time |
61 | 61 | |
62 | -Use analytics on search conversions to improve results. | |
62 | +Improve results with analytics on conversions and give popular documents a little boost. | |
63 | 63 | |
64 | -Also, give popular documents a little boost. | |
65 | - | |
66 | -Keep track of searches. The database works well for low volume, but feel free to use redis or another datastore. | |
64 | +First, you must keep track of search conversions. The database works well for low volume, but feel free to use redis or another datastore. | |
67 | 65 | |
68 | 66 | ```ruby |
69 | 67 | class Search < ActiveRecord::Base |
... | ... | @@ -90,7 +88,7 @@ class Product < ActiveRecord::Base |
90 | 88 | end |
91 | 89 | ``` |
92 | 90 | |
93 | -After the reindex is complete (to prevent errors), tell the search query to use conversions. | |
91 | +After the reindex is complete (to prevent errors), tell the search method to use conversions. | |
94 | 92 | |
95 | 93 | ```ruby |
96 | 94 | Product.search "Fat Free Milk", conversions: true | ... | ... |