module Redis::Commands::Pubsub

def unsubscribe(*channels)

Stop listening for messages posted to the given channels.
def unsubscribe(*channels)
  _subscription(:unsubscribe, 0, channels, nil)
end