mongodb/mongo-ruby-driver

View on GitHub
profile/driver_bench/bson/base.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require_relative '../base'

module Mongo
  module DriverBench
    module BSON
      # Abstract superclass for all BSON benchmarks.
      #
      # @api private
      class Base < Mongo::DriverBench::Base
        private

        # Common setup for these benchmarks.
        def setup
          # rubocop:disable Naming/MemoizedInstanceVariableName
          @dataset ||= load_file(file_name).first
          @dataset_size ||= size_of_file(file_name) * 10_000
          # rubocop:enable Naming/MemoizedInstanceVariableName
        end

        # Returns the name of the file name that contains
        # the dataset to use.
        def file_name
          raise NotImplementedError
        end
      end
    end
  end
end