Sha256: ab7e7ec9150d0d6abc755176e1c40eb10e0703ae6c1ff3ae34a95596c190a909
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
module MixedGauge # Support parallel execution with each shard and deal with AR connection # management in parallel execution. class AllShardsInParallel # @param [Array<Class>] An array of shard model class def initialize(shards) @shards = shards end # @yield [Class] A shard model class # @return [Array] A result # @example # User.all_shards_in_parallel.map(&:count).reduce(&:+) def map(&block) commands = @shards.map do |m| Expeditor::Command.new { m.connection_pool.with_connection { yield m } } end commands.each(&:start) commands.map(&:get) end # @yield [Class] A shard model class # @return [Array] A result # @example # User.all_shards_in_parallel.flat_map {|m| m.where(age: 1) } def flat_map(&block) map(&block).flatten end # @yield [Class] A shard model class # @return [MixedGauge::AllShardsInParallel] # @example # User.all_shards_in_parallel.each {|m| puts m.count } def each(&block) map(&block) if block_given? self end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mixed_gauge-1.1.0 | lib/mixed_gauge/all_shards_in_parallel.rb |
mixed_gauge-1.0.0 | lib/mixed_gauge/all_shards_in_parallel.rb |