Skip to main content
Version: 2.1.0

Redis

ToolJet can run Redis commands on your Redis instances.

Connection

ToolJet requires the following to connect to your Redis instances.

ToolJet - Redis connection
  • Host
  • Port - The default port for Redis server is 6379
  • Username
  • Password

Click on "Test" button to test the connection and click "Save" to save the data source.

Redis Queries

Here are some examples of Redis commands and their usage. You can refer to the Redis Official Documentation for a complete list of supported commands.

PING Command

The PING command is used to test the connection to Redis. If the connection is successful, the Redis server will respond with PONG.

PING

SET Command

The SET command is used in Redis to assign a value to a specific key.

SET key value

Example 1/2: When the input value contains spaces, you should encode the value before providing it as an input:

SET products {{encodeURI('John Doe')}}
Redis

GET Command

The GET command is used in Redis to retrieve the value associated with a specific key.

GET key

Example 2/2: To retrieve a value that was previously encoded while setting, you can use transformations.

  • Enter the GET command in the editor:

    GET products
  • Enable Transformations (JS) and use decodeURI:

    return JSON.parse(decodeURI(data));
    Redis