module Redis::Commands::Pubsub
def psubscribe(*channels, &block)
See the [Redis Server PSUBSCRIBE documentation](https://redis.io/docs/latest/commands/psubscribe/)
Listen for messages published to channels matching the given patterns.
def psubscribe(*channels, &block) _subscription(:psubscribe, 0, channels, block) end