Sha256: 21653bb86c5cc1f8aaa9c02563b25443d1fbb2d7615b95d47aa9ad3b39cb7512
Contents?: true
Size: 1.16 KB
Versions: 9
Compression:
Stored size: 1.16 KB
Contents
require 'active_support' class LHS::Record module Batch extend ActiveSupport::Concern module ClassMethods # Process single entries fetched in batches def find_each(options = {}) find_in_batches(options) do |records| records.each do |record| item = LHS::Item.new(record) yield new(LHS::Data.new(item, records._data, self)) end end end # Process batches of entries def find_in_batches(options = {}) raise 'No block given' unless block_given? start = options[:start] || 1 batch_size = options[:batch_size] || LHS::Pagination::Base::DEFAULT_LIMIT params = options[:params] || {} loop do # as suggested by Matz data = request(params: params.merge(limit_key(:parameter) => batch_size, pagination_key(:parameter) => start)) batch_size = data._raw[limit_key(:parameter)] left = data._raw.dig(*total_key).to_i - data._raw[pagination_key(:parameter)].to_i - data._raw[limit_key(:paramter)].to_i yield new(data) break if left <= 0 start += batch_size end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems