Description - Returns the remaining time to live of a key that has a timeout. This introspection capability allows a Redis client to check how many seconds a given key will continue to be part of the dataset.
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 - ExpireAt works exactly like Expire but instead to get the number of seconds representing the Time To Live of the key as a second argument (that is a relative way of specifing the TTL), it takes an absolute one in the form of a UNIX timestamp (Number of seconds elapsed since 1 Gen 1970).
A UNIX timestamp (Number of seconds elapsed since 1 Gen 1970) which the specified key is set to expire.
* - 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 - If key holds a hash, retrieve the value associated to the specified field. If the field is not found or the key does not exist, a special 'nil' value is returned.
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 substring of the string value stored at key, determined by the offsets start and end (both are inclusive). Negative offsets can be used in order to provide an offset starting from the end of the string. So -1 means the last character, -2 the penultimate and so forth.
Runtime Class - com.ibi.agents.XDRedisStringGetRange
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 - Get the value of key. If the key does not exist the special value nil is returned. An error is returned if the value stored at key is not a string, because GET only handles string values.