class Redis

def psubscribe(*channels, &block)

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