Status Document {status} - Status document will be the out document.
Input Document {input} - Input document will be the out document.
* - denotes required
Output Events
Name
Description
onFailConnect
Could not connect to the external system.
fail_parse
Could not parse a document.
fail_redis
A fail Redis API
onFailOperation
Could not perform the operation requested.
Description - Add the specified members to the set stored at key. Members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
A delimeter character to detect members from one another.
* - denotes required
Parameter
Type
Description
Return:
string
Document to return from the object.
Select from one of the following options:
Status Document {status} - Status document will be the out document.
Input Document {input} - Input document will be the out document.
* - denotes required
Output Events
Name
Description
onFailConnect
Could not connect to the external system.
fail_parse
Could not parse a document.
fail_redis
A fail Redis API
onFailOperation
Could not perform the operation requested.
Description - Set key to hold the string value. If key already holds a value, it is overwritten, regardless of its type. Any previous time to live associated with the key is discarded on successful SET operation.
Set value when Key not Found {NX} - Only set the key if it does not already exist.
Set value when Key Found {XX} - Only set the key if it already exist.
* - denotes required
Parameter
Type
Description
Time (secs):
integer
Sets the specified expiration time, in seconds.
Time (msecs):
integer
Sets the specified expiration time, in milliseconds.
* - denotes required
Parameter
Type
Description
Return:
string
Document to return from the object.
Select from one of the following options:
Status Document {status} - Status document will be the out document.
Input Document {input} - Input document will be the out document.
* - denotes required
Output Events
Name
Description
onFailConnect
Could not connect to the external system.
fail_parse
Could not parse a document.
fail_redis
A fail Redis API
onFailOperation
Could not perform the operation requested.
Description - Increments the number stored at key by one. If the key does not exist, it is set to 0 before performing the operation. An error is returned if the key contains a value of the wrong type or contains a string that can not be represented as integer.
Runtime Class - com.ibi.agents.XDRedisStringIncrement
Status Document {status} - Status document will be the out document.
Input Document {input} - Input document will be the out document.
* - denotes required
Output Events
Name
Description
onFailConnect
Could not connect to the external system.
fail_parse
Could not parse a document.
fail_redis
A fail Redis API
onFailOperation
Could not perform the operation requested.
Description - Decrements the number stored at key by one. If the key does not exist, it is set to 0 before performing the operation. An error is returned if the key contains a value of the wrong type or contains a string that can not be represented as integer. This operation is limited to 64 bit signed integers.
Runtime Class - com.ibi.agents.XDRedisStringDecrement
Status Document {status} - Status document will be the out document.
Input Document {input} - Input document will be the out document.
* - denotes required
Output Events
Name
Description
onFailConnect
Could not connect to the external system.
fail_parse
Could not parse a document.
fail_redis
A fail Redis API
onFailOperation
Could not perform the operation requested.
Description - If key already exists and is a string, this command appends the value at the end of the string. If key does not exist it is created and set as an empty string, so APPEND will be similar to SET in this special case.
Runtime Class - com.ibi.agents.XDRedisStringAppend
The value whose element will be removed from the set.
* - denotes required
Parameter
Type
Description
Return:
string
Document to return from the object.
Select from one of the following options:
Status Document {status} - Status document will be the out document.
Input Document {input} - Input document will be the out document.
* - denotes required
Output Events
Name
Description
onFailConnect
Could not connect to the external system.
fail_parse
Could not parse a document.
fail_redis
A fail Redis API
onFailOperation
Could not perform the operation requested.
Description - Returns the specified range of elements in the sorted set stored at key. The elements are considered to be ordered from the lowest to the highest score.
Runtime Class - com.ibi.agents.XDRedisSortedSetsZRange
Status Document {status} - Status document will be the out document.
Input Document {input} - Input document will be the out document.
* - denotes required
Output Events
Name
Description
onFailConnect
Could not connect to the external system.
fail_parse
Could not parse a document.
fail_redis
A fail Redis API
onFailOperation
Could not perform the operation requested.
Description - Adds all the specified members with the specified scores to the sorted set stored at key. It is possible to specify multiple score / member pairs. If a specified member is already a member of the sorted set, the score is updated and the element reinserted at the right position to ensure the correct ordering.
Runtime Class - com.ibi.agents.XDRedisSortedSetsZAdd