Method: Redis::MultiFuture#_set
- Defined in:
- lib/redis/pipeline.rb
#_set(replies) ⇒ Object
120 121 122 123 124 125 126 127 128 129 |
# File 'lib/redis/pipeline.rb', line 120 def _set(replies) @object = if replies @futures.map.with_index do |future, index| future._set(replies[index]) future.value end else replies end end |