Commands
AllyDB commands are similar to Redis. They are case-insensitive and end with a newline character.
Example of a command
> COMMAND arg1 arg2
Example of running a command in Node.js
const net = require("net");
const client = net.createConnection(4000, () => {
client.write("COMMAND arg1 arg2\n");
});
Last updated on April 25, 2023