Hey there,
Previous to finding ferret I had a test query setup to do pagination
like:
@listing_pages, @listings =
paginate(:listing, :per_page => 10,
:conditions => [" name LIKE ? ", "%" + search_criteria +
“%”],
:order_by => “name ASC”)
Can I do similar pagination with @results array returned from a ferret
query?
Thanks. 