Redis Query Action
Run Redis query completely serverless via Thingsup IoT Platform. Insert or get data from Redis with simple MQTT rules engine or HTTP APIs.
Last updated
Was this helpful?
Run Redis query completely serverless via Thingsup IoT Platform. Insert or get data from Redis with simple MQTT rules engine or HTTP APIs.
This provides a way to run Redis Query. Before adding Redis Query Action, user has to define a Redis Connection. User need to provide following parameters to add Redis Query Action.
User need to provide a Redis Command in Lowercase. Find Redis Commands.
User can write JavaScript code to create dynamic Redis query.
Here the "payload" object and params Array objects available in this code which are directly executed on Redis Connection along with supplied command.
"payload" object is supplied from Action Trigger like Rules, Action Command etc.
//Example 1
params.push(payload.key);
//Command is hgetall//Example 2
params.push("getname"); //to get name of current connection
params.push("list"); // to get the list of client connections to the server
//Command is clientUser need to provide a Connection ID of Redis database connection.

Please note the following points:
"payload" object is supplied from Action Trigger like Rules, Action Command etc.
Data Response of Redis query will be available as Action Response.
Last updated
Was this helpful?
Was this helpful?