📄️ XACK
Learn how to use Redis XACK to acknowledge the processing of a message from a stream by a consumer.
📄️ XADD
Learn how to use Redis XADD to append a new entry to a stream.
📄️ XAUTOCLAIM
Learn how to use Redis XAUTOCLAIM to help with message recovery, claiming pending messages from other consumers.
📄️ XCLAIM
Learn how to use Redis XCLAIM to change the ownership of a pending message.
📄️ XDEL
Learn how to use Redis XDEL to delete a message from a stream.
📄️ XGROUP CREATE
Learn how to use Redis XGROUP CREATE to create a new consumer group.
📄️ XGROUP CREATECONSUMER
Learn how to use Redis XGROUP CREATECONSUMER to create a new consumer in a consumer group.
📄️ XGROUP DELCONSUMER
Learn how to use Redis XGROUP DELCONSUMER to remove a consumer from a consumer group.
📄️ XGROUP DESTROY
Learn how to use Redis XGROUP DESTROY to remove a consumer group.
📄️ XGROUP SETID
Learn how to use Redis XGROUP SETID to set the last delivered ID of a stream.
📄️ XINFO CONSUMERS
Learn how to use Redis XINFO CONSUMERS to fetch information about a stream's consumers.
📄️ XINFO GROUPS
Learn how to use Redis XINFO GROUPS to get information about consumer groups of a stream.
📄️ XINFO STREAM
Learn how to use Redis XINFO STREAM command to get information about a stream.
📄️ XLEN
Learn how to use Redis XLEN to get the length of a stream.
📄️ XPENDING
Learn how to use Redis XPENDING to list pending messages of a stream's consumer group.
📄️ XRANGE
Learn how to use Redis XRANGE to retrieve a range of messages from a stream.
📄️ XREAD
Learn how to use Redis XREAD to read data from one or more streams.
📄️ XREADGROUP
Learn how to use Redis XREADGROUP for consumer groups to read from streams.
📄️ XREVRANGE
Learn how to use Redis XREVRANGE to fetch a range of messages from a stream in reverse order.
📄️ XSETID
Learn how to use Redis XSETID to set the last delivered ID for streams.
📄️ XTRIM
Learn how to use Redis XTRIM to limit the length of a stream to a certain size.