Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions docs/cache/resp/commands.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
---
sidebar_position: 55
sidebar_label: commands
title: Momento RESP commands
description: List of supported and unsupported RESP commands.
hide_title: true
slug: /cache/resp/commands
---

# Momento RESP commands

Momento Valkey supports all core RESP commands according to
the [Valkey 9.0 specification](https://valkey.io/commands/),
except for cluster management, scripting, and mode-switching
commands like pubsub or transactions.

Extension modules like `valkey-search` are not currently
supported. Please let us know if your workload requires a
particular module!


## List of unsupported commands

| Command | Category |
| --- | --- |
| ACL | Management |
| ASKING | Cluster |
| AUTH | Connection |
| BGREWRITEAOF | Management |
| BGSAVE | Management |
| BLMOVE | Blocking |
| BLMPOP | Blocking |
| BLPOP | Blocking |
| BRPOP | Blocking |
| BRPOPLPUSH | Blocking |
| BZMPOP | Blocking |
| BZPOPMAX | Blocking |
| BZPOPMIN | Blocking |
| COPY | Databases |
| CLIENT | Connection |
| CLUSTER | Management |
| COMMAND | Management |
| COMMANDLOG | Management |
| CONFIG | Management |
| DBSIZE | Management |
| DEBUG | Management |
| DISCARD | Transaction |
| DUMP | Management |
| EVAL | Scripting |
| EVALSHA | Scripting |
| EVALSHA_RO | Scripting |
| EVAL_RO | Scripting |
| EXEC | Transaction |
| FAILOVER | Management |
| FCALL | Scripting |
| FCALL_RO | Scripting |
| FLUSHALL | Management |
| FUNCTION | Scripting |
| HELLO | Connection |
| INFO | Management |
| LASTSAVE | Management |
| LATENCY | Management |
| MEMORY | Management |
| MIGRATE | Management |
| MODULE | Management |
| MONITOR | Management |
| MOVE | Databases |
| MULTI | Transaction |
| OBJECT | Management |
| PFDEBUG | Management |
| PFSELFTEST | Management |
| PSUBSCRIBE | Pubsub |
| PSYNC | Management |
| PUBLISH | Pubsub |
| PUBSUB | Pubsub |
| PUNSUBSCRIBE | Pubsub |
| QUIT | Connection |
| READONLY | Management |
| READWRITE | Management |
| REPLCONF | Management |
| REPLICAOF | Management |
| RESET | Connection |
| RESTORE | Management |
| RESTORE-ASKING | Management |
| ROLE | Management |
| SAVE | Management |
| SCRIPT | Scripting |
| SELECT | Databases |
| SHUTDOWN | Management |
| SLAVEOF | Management |
| SLOWLOG | Management |
| SSUBSCRIBE | Pubsub |
| SUBSCRIBE | Pubsub |
| SUNSUBSCRIBE | Pubsub |
| SWAPDB | Management |
| SYNC | Management |
| UNSUBSCRIBE | Pubsub |
| UNWATCH | Transaction |
| WAIT | Management |
| WAITAOF | Management |
| WATCH | Transaction |
2 changes: 1 addition & 1 deletion docs/cache/resp/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ try (Jedis client = new Jedis(shard)) {

## Current command coverage

Momento currently supports `GET` and `SET` with full Valkey/Redis semantics. Additional commands are actively being added. If your workload requires a specific RESP command, [let us know](https://www.gomomento.com/contact-us) what you need.
See [RESP commands](resp/commands).

## Why teams switch to Momento RESP

Expand Down
Loading