Sha256: e71e1197e3b8530c0015c3de598cb4f64e1d5d026a797d9932aed8a7b8bceb2b

Contents?: true

Size: 1.23 KB

Versions: 20

Compression:

Stored size: 1.23 KB

Contents

# Copyright 2014-2020 Aerospike, Inc.
#
# Portions may be licensed to Aerospike, Inc. under one or more contributor
# license agreements.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.

module Aerospike

  BatchNamespace = Struct.new :namespace, :keys

  class BatchDirectNode #:nodoc:

    attr_accessor :node
    attr_accessor :batch_namespaces

    def self.generate_list(cluster, replica_policy, keys)
      keys.group_by { |key| cluster.get_node_for_key(replica_policy, key) }
        .map { |node, keys_for_node| BatchDirectNode.new(node, keys_for_node) }
    end

    def initialize(node, keys)
      @node = node
      @batch_namespaces = keys.group_by(&:namespace)
        .map { |ns, keys_for_ns| BatchNamespace.new(ns, keys_for_ns) }
    end

  end

end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
aerospike-3.0.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.29.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.28.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.27.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.26.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.25.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.24.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.23.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.22.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.21.1 lib/aerospike/command/batch_direct_node.rb
aerospike-2.21.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.20.1 lib/aerospike/command/batch_direct_node.rb
aerospike-2.20.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.19.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.18.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.17.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.16.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.15.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.14.0 lib/aerospike/command/batch_direct_node.rb
aerospike-2.13.0 lib/aerospike/command/batch_direct_node.rb