Developer Tools

Redis Guide

Use a focused browser utility for developer data, code, or lookup workflows.

TypeCommandExplanation
Connectionredis-cliConnect to a local Redis server.
Connectionredis-cli -h 127.0.0.1 -p 6379 -a passwordConnect to a Redis server with host, port, and password.
ServerPINGCheck whether Redis is responding.
StringSET user:1:name "Ada"Set a string value.
StringGET user:1:nameRead a string value.
StringSET session:abc "value" EX 3600Set a value with expiration in seconds.
StringINCR counter:visitsIncrement an integer value.
KeyEXISTS user:1:nameCheck whether a key exists.
KeyDEL user:1:nameDelete one or more keys.
KeyTTL session:abcShow remaining expiration time.
HashHSET user:1 email ada@example.com age 36Set fields on a hash.
HashHGETALL user:1Read all fields from a hash.
ListLPUSH queue:emails job-1Push an item to the left of a list.
ListRPOP queue:emailsPop an item from the right of a list.
SetSADD tags:post:1 redis cache databaseAdd unique values to a set.
SetSMEMBERS tags:post:1Read all set members.
Sorted SetZADD leaderboard 100 user:1 90 user:2Add scored members.
Sorted SetZREVRANGE leaderboard 0 9 WITHSCORESRead top scores.
Pub/SubPUBLISH events:user.created "1"Publish a message to a channel.
Pub/SubSUBSCRIBE events:user.createdSubscribe to a channel.
StreamXADD orders * user_id 1 total 39.99Append an entry to a stream.
StreamXRANGE orders - + COUNT 10Read stream entries.
AdminINFOShow server metrics and configuration summary.
AdminFLUSHDBDelete all keys from the current database. Use carefully.

Concepts

Common Redis data types

TypeUse caseExamples
StringCache values, counters, feature flags, sessions.SET, GET, INCR, MGET
HashObject-like field storage.HSET, HGET, HGETALL
ListQueues and ordered collections.LPUSH, RPOP, LRANGE
SetUnique unordered values.SADD, SMEMBERS, SINTER
Sorted SetLeaderboards and ranked data.ZADD, ZRANGE, ZREVRANGE
StreamAppend-only event streams.XADD, XRANGE, XREAD

Tool guide

How to use Redis Guide

Overview

Use a focused browser utility for developer data, code, or lookup workflows. This guide explains a practical way to check the result before you use it.

How to use it

  1. Open Redis Guide and prepare a copy of the input you want to process.
  2. Paste the data, code, URL, expression, or lookup value required by the utility.
  3. Choose the relevant parser, formatter, converter, or lookup option and run it.
  4. Inspect the returned value or generated output before copying it into a project.

Example

Use a small non-sensitive test value, verify the result manually, then repeat with your real development input.

Before you use the result

  • The utility runs in the browser where possible; never paste production secrets, private keys, or credentials into a convenience tool.
  • Tool output can help with debugging but must be validated against your runtime, documentation, and security requirements.

FAQ

Questions people ask

What does Redis Guide do?

Use a focused browser utility for developer data, code, or lookup workflows.

How do I use Redis Guide?

Paste the data, code, URL, expression, or lookup value required by the utility. Choose the relevant parser, formatter, converter, or lookup option and run it.

How should I check the result?

Inspect the returned value or generated output before copying it into a project.

Is an account required?

No. NovaKit tools are available for direct use without creating an account.

How is my input handled?

The utility runs in the browser where possible; never paste production secrets, private keys, or credentials into a convenience tool.

What should I keep in mind?

Tool output can help with debugging but must be validated against your runtime, documentation, and security requirements.

What is a safe Redis Guide example?

Use a small non-sensitive test value, verify the result manually, then repeat with your real development input.

Can I keep a copy of the result?

Where output is generated, use the page’s copy, download, print, or export controls and keep the original input until you have verified the result.

Related tools

Continue working