Tire seems to ignore page variable Tire seems to ignore page variable elasticsearch elasticsearch

Tire seems to ignore page variable


Here's the answer:

search = Tire::Search::Search.new("items")search.from 1   #use from and size for pagination with indirect queriessearch.size 1search.query { string('name:blender') }search.results.count

Hope this helps somebody else.