Commit e4fc75d11c370160a6b00c04b28da979adbe2079
1 parent
860874d7
Exists in
master
and in
18 other branches
Added case_sensitive option to readme [skip ci]
Showing
1 changed file
with
10 additions
and
0 deletions
Show diff stats
README.md
... | ... | @@ -1684,6 +1684,16 @@ class Product < ApplicationRecord |
1684 | 1684 | end |
1685 | 1685 | ``` |
1686 | 1686 | |
1687 | +Make search case sensitive [master] | |
1688 | + | |
1689 | +```ruby | |
1690 | +class Product < ApplicationRecord | |
1691 | + searchkick case_sensitive: true | |
1692 | +end | |
1693 | +``` | |
1694 | + | |
1695 | +> If misspellings are enabled (default), results with a single character case difference will match. Turn off misspellings if this is not desired. | |
1696 | + | |
1687 | 1697 | Change import batch size |
1688 | 1698 | |
1689 | 1699 | ```ruby | ... | ... |