Class: Couchbase::SamplingScan

Inherits:
Object
  • Object
show all
Defined in:
lib/couchbase/key_value_scan.rb

Overview

A sampling scan performs a scan that randomly selects documents up to a configured limit

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(limit, seed = nil) ⇒ SamplingScan

Creates an instance of a SamplingScan scan type

Parameters:

  • limit (Integer)

    the maximum number of documents the sampling scan can return

  • seed (Integer, nil) (defaults to: nil)

    the seed used for the random number generator that selects the documents. If not set, a seed is generated at random



103
104
105
106
# File 'lib/couchbase/key_value_scan.rb', line 103

def initialize(limit, seed = nil)
  @limit = limit
  @seed = seed
end

Instance Attribute Details

#limitInteger

Returns:

  • (Integer)


95
96
97
# File 'lib/couchbase/key_value_scan.rb', line 95

def limit
  @limit
end

#seedInteger?

Returns:

  • (Integer, nil)


96
97
98
# File 'lib/couchbase/key_value_scan.rb', line 96

def seed
  @seed
end