Skip to main content
Use XDELEX to delete entries from a stream with control over what happens to consumer group references. IDS <numids> introduces the list of IDs and the count must match. The policy decides how consumer groups are affected: KEEPREF, the default, deletes the entries but leaves them in the pending entries lists of the groups that had received them, DELREF removes those references as well, and ACKED only deletes entries that every group has read and acknowledged, leaving the others in place. That last policy is what makes the command useful as a safe cleanup step: it removes exactly the entries nobody still owes work on. The reply holds one status code per requested ID. Where XDEL always behaves like KEEPREF, XDELEX is its explicit form.

Syntax

Arguments

Response

The reply reports the result of the operation. Error replies have the same shape in RESP2 and RESP3 and are surfaced as exceptions by the SDKs below.
Client libraries often decode bulk strings, maps, sets, and numeric strings into language-native values. The table describes the Redis wire reply.

Examples

TCP examples use the TLS REDIS_URL from the Upstash console. REST examples use UPSTASH_REDIS_REST_URL and UPSTASH_REDIS_REST_TOKEN.