---
title: "Redis Connector"
slug: "redis-connector"
description: "Use the Redis connector in Lansweeper Flow Builder to create, read, update, and delete data in a Redis in-memory key-value store."
updated: 2026-07-17T15:46:57Z
published: 2026-06-12T15:08:11Z
canonical: "docs.lansweeper.com/redis-connector"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lansweeper.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Redis Connector

Note on third‑party tools

              

We aim to provide accurate and helpful details about third‑party tools, but we can’t guarantee that this information is always complete or up to date. If you notice any discrepancies, feel free to share them in the feedback section below. For the most reliable information, please always refer to the third‑party tool’s official documentation.

[Redis](https://redis.io/) is an in-memory data structure store, used as a distributed, in-memory key–value database, cache and message broker. The **Redis** component provides the ability to create, read, update, and delete data inside a Redis database.

## Connections

### Redis Connection

Authenticate requests to a Redis server.

| Input | Comments | Default |
| --- | --- | --- |
| Host | Provide the string value for the host of the server. | 192.168.0.1 |
| Port | The port of the redis server. |  |
| Password |  |  |
| Username |  |  |
| Database | Select a logical database to connect to. |  |
| Use TLS | Set to true to enable TLS for the connection. | false |
| Client Key | Provide the client key for the TLS connection. |  |
| Client Certificate | Provide the client certificate for the TLS connection. |  |
| CA Certificate | Provide the CA certificate for the TLS connection. If not provided, the connection will not be verified. |  |

## Actions

### Delete Key

Delete the value of a key

| Input | Comments | Default |
| --- | --- | --- |
| Key | Provide a string value for key of the item. |  |
| Connection |  |  |

### Flush All

Delete all the keys of all the existing databases, not just the currently selected one

| Input | Comments | Default |
| --- | --- | --- |
| Connection |  |  |

### Get

Get the value of a key

| Input | Comments | Default |
| --- | --- | --- |
| Connection |  |  |
| Key | Provide a string value for key of the item. |  |

### Get Time

Get the local time of the redis server

| Input | Comments | Default |
| --- | --- | --- |
| Connection |  |  |

### Keys

Returns all keys matching a specified pattern

| Input | Comments | Default |
| --- | --- | --- |
| Key | Provide a string value for key of the item. |  |
| Connection |  |  |

### Ping

Send a ping to the redis server

| Input | Comments | Default |
| --- | --- | --- |
| Connection |  |  |

### Set

Set the value of a key

| Input | Comments | Default |
| --- | --- | --- |
| Key | Provide a string value for key of the item. |  |
| Value | Provide a string for the value to be set. |  |
| Connection |  |  |
