List Streams
The LIST STREAMS command is used to obtain a list of streams currently configured in the RioDB instance.
Syntax:
LIST STREAMS;
Output: A JSON formatted list detailing each stream.
Sample output:
{
"status": 200,
"statements": 1,
"milliseconds": 0,
"details": [
{
"statement": 1,
"response": [
"my_tcp_stream",
"my_udp_stream"
]
}
]
}