Module: Sunspot::DSL::Paginatable
- Included in:
- MoreLikeThisQuery, StandardQuery
- Defined in:
- lib/sunspot/dsl/paginatable.rb
Instance Method Summary collapse
-
#paginate(options = {}) ⇒ Object
Paginate your search.
Instance Method Details
#paginate(options = {}) ⇒ Object
Paginate your search. This works the same way as WillPaginate’s paginate().
Note that Solr searches are always paginated. Not calling #paginate is the equivalent of calling:
paginate(:page => 1, :per_page => Sunspot.config.pagination.default_per_page)
Options (options)
- :page<Integer,String>
-
The requested page. The default is 1.
- :per_page<Integer,String>
-
How many results to return per page. The default is the value in
Sunspot.config.pagination.default_per_page - :offset<Integer,String>
-
Applies a shift to paginated records. The default is 0.
- :cursor<String>
-
Cursor value for cursor-based pagination. The default is nil.
25 26 27 28 29 30 31 32 |
# File 'lib/sunspot/dsl/paginatable.rb', line 25 def paginate( = {}) page = .delete(:page) per_page = .delete(:per_page) offset = .delete(:offset) cursor = .delete(:cursor) raise ArgumentError, "unknown argument #{options.keys.first.inspect} passed to paginate" unless .empty? @query.paginate(page, per_page, offset, cursor) end |