Commands
TempDB provides a rich set of commands to manage data, sessions, and advanced features like PUB/SUB messaging, event streams, and message queues. Below are the available commands, grouped by functiona
List of Commands
Key-Value Commands
SET
GET_KEY
UPDATE_KEY
DELETE_KEY
VIEW_DATA
INCR_KEY
DECR_KEY
STORE
STOREBATCH
Document Operations
INSERT_DOC
GET_DOC
GET_ALL_DOCS
DELETE_DOC
PUB/SUB Operations
SUBSCRIBE
UNSUBSCRIBE
PUBLISH
CHANS
CHANS_SUBS
Event Streams Operations
XADD
XREAD
XLIST
XDEL
Message Queues Operations
QPEEK
QLEN
ENQUEUE
DEQUEUE
QLIST
Key-Value Commands
These commands handle basic key-value storage and manipulation.
SET
Syntax:
Description: Stores a key-value pair where the value is provided as a JSON string.
Example:
Response:
Success:
{ "status": "success", "data": "OK" }
Error:
{ "status": "error", "message": "INVALID_JSON: ..." }
or database error message.
GET_KEY
Syntax:
Description: Retrieves the value associated with a key, supporting various data types (String, List, Set, JSON).
Example:
Response:
Success:
{ "status": "success", "data": {"name": "Laptop", "price": 999.99} }
(for JSON)Error:
{ "status": "error", "message": "NOT_FOUND" }
UPDATE_KEY
Syntax:
Description: Updates the value of an existing key with a new JSON value.
Example:
Response:
Success:
{ "status": "success", "data": "UPDATED" }
Error:
{ "status": "error", "message": "NOT_FOUND" }
or{ "status": "error", "message": "INVALID_JSON: ..." }
DELETE_KEY
Syntax:
Description: Removes a key and its associated value from the database.
Example:
Response:
Success:
{ "status": "success", "data": "DELETED" }
Error:
{ "status": "error", "message": "NOT_FOUND" }
VIEW_DATA
Syntax:
Description: Retrieves all data stored in the current database.
Example:
Response:
Success:
{ "status": "success", "data": {"key1": {...}, "key2": {...}} }
Error: Database error message if applicable.
INCR_KEY
Syntax:
Description: Increments the numeric value of a key by the specified amount.
Example:
Response:
Success:
{ "status": "success", "data": 60 }
(new value)Error:
{ "status": "error", "message": "NOT_FOUND_OR_NOT_NUMERIC" }
or{ "status": "error", "message": "INVALID_AMOUNT" }
DECR_KEY
Syntax:
Description: Decrements the numeric value of a key by the specified amount.
Example:
Response:
Success:
{ "status": "success", "data": 55 }
(new value)Error:
{ "status": "error", "message": "NOT_FOUND_OR_NOT_NUMERIC" }
or{ "status": "error", "message": "INVALID_AMOUNT" }
Document Operations
These commands manage document-based data.
INSERT_DOC
Syntax:
Description: Inserts a new document into the database and returns its ID.
Example:
Response:
Success:
{ "status": "success", "data": "doc_123" }
Error:
{ "status": "error", "message": "INVALID_JSON: ..." }
GET_DOC
Syntax:
Description: Retrieves a document by its ID.
Example:
Response:
Success:
{ "status": "success", "data": {"name": "Laptop", "price": 999.99} }
Error:
{ "status": "error", "message": "NOT_FOUND" }
PUB/SUB Operations
These commands manage publish/subscribe messaging.
SUBSCRIBE
Syntax:
Description: Subscribes to a specific channel for real-time updates.
Example:
Response:
Success:
{ "status": "success", "data": "SUBSCRIBED" }
Error: Database error message.
UNSUBSCRIBE
Syntax:
Description: Unsubscribes from a specific channel.
Example:
Response:
Success:
{ "status": "success", "data": "UNSUBSCRIBED" }
Error: Database error message.
Best Practices
Error Handling: Check the
status
andmessage
fields in responses to handle errors appropriately.JSON Validation: Ensure JSON inputs are valid to avoid
INVALID_JSON
errors.Performance: Use
VIEW_DATA
andGET_ALL_DOCS
sparingly on large datasets to avoid performance issues.
Troubleshooting
Command Not Recognized: Verify the command syntax and spelling.
NOT_FOUND Errors: Ensure the key, document ID, or resource exists in the database.
INVALID_JSON: Validate your JSON string using a linter or tool before sending.
For further assistance, contact support at [email protected].
I
Last updated