After you add the Jedis functionality to the Connection
object, you
can use this functionality by creating a workflow.
Procedure
-
Log in to the Automation Orchestrator Client.
-
Navigate to .
-
Click New Workflow.
-
Enter a name for the workflow, and click Create.
-
Use
Redis:Connection
as a connection type to create an input
parameter of the workflow.
-
Create a Scriptable task element by inserting the
following code:
connection.set("plugin:tutorial", "Testing redis connection - success");
var result = connection.get("plugin:tutorial");
System.log(result);
-
Save the workflow, and click Run.
-
After the workflow run finishes, select the Logs tab to
verify the connection status.