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

Instance Method Details

#to_backendObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



109
110
111
112
113
114
115
# File 'lib/couchbase/key_value_scan.rb', line 109

def to_backend
  {
    scan_type: :sampling,
    limit: @limit,
    seed: @seed,
  }
end