class Redis

def psubscribe(*channels, &block)

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