class Redis

def subscribe(*channels, &block)

Listen for messages published to the given channels.
def subscribe(*channels, &block)
  synchronize do |client|
    _subscription(:subscribe, 0, channels, block)
  end
end