ToolJet/docs/docs/data-sources/redis.md
Arpit 5319b974f8
[docs] Updates for widget/datasource references and screenshots (#701)
* introduction gif updated with new UI

* introduction

* creating a new app

* tutorial- datasource

* adding a widget:updated

* tutorial - mobile-layout

* debugger

* table widget reference

* sharing apps: updated

* datasources: rest-api

* rest-api widget reference: updated the gif

* gifs update debugger

* redis image updated

* redis image size changed

* datasource airtable updated

* datsource graphql gif update

* black bordered gifs updated

* debugger intro gif fixed

* datasource Elasticsearch image

* widget: table properties

* added map:widget referene, and minor fixes to the table widget

* button widget

* widget: checkbox

* widget: datepicker

* widgetL date-range picker

* widget: dropdown

* widgets: multiselect

* widgets: radio button

* multi-select and radio button typo fixes

* widget: star rating

* widget: toggle switch

* widgets sidebar_postion updated

* widget:image

* input text

* widget: text inout

* widget: textarea

* widget: rich text editor

* widget: modal

* widget: textarea

* google sheets

* text/content updates

* .

* some text updates

* Fixes

Co-authored-by: navaneeth <navaneethpk@outlook.com>
2021-09-15 12:12:47 +05:30

886 B

sidebar_position
9

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 datasource.

Redis Queries

List of supported commands: Redis Official Documentation

Examples

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

PING

SET command can be used to set the value for a key

SET key value

GET command can be used to retrieve the value of a key

GET key