Skip to main content
Version: 7 - Gugelhupf

ConnectorTypeREDIS

class connector_types.connector_type_redis.ConnectorTypeREDIS

Interact with a REDIS key value store.

warning

This connector type currently only supports unencrypted and unauthenticated connections to REDIS. Contact info@cloudomation.com to request a feature.

Consult the redis commands documentation at https://redis.io/commands for details on commands, arguments and result schemas.

Inputs

NameTypeDefaultDescription
argslist[]
commandstr
hoststr
portint6379

Outputs

NameTypeDefaultDescription
resultobject

Constants

input_list = ['args', 'command', 'host', 'port'] output_list = ['result'] ssl_context_inputs = ['check_hostname', 'client_cert', 'client_key', 'server_ca'] version = 1

Methods

execute

log

one_of_inputs

run

Example

import flow_api
def handler(system: flow_api.System, this: flow_api.Execution):
redis_server_info = this.connect(
connector_type='REDIS',
host='my-redis-host',
command='INFO',
).get('output_value')['result']
this.log(redis_server_info=redis_server_info)
return this.success('all done')