Developer Tools
Redis Guide
Use a focused browser utility for developer data, code, or lookup workflows.
| Type | Command | Explanation | |
|---|---|---|---|
| Connection | redis-cli | Connect to a local Redis server. | |
| Connection | redis-cli -h 127.0.0.1 -p 6379 -a password | Connect to a Redis server with host, port, and password. | |
| Server | PING | Check whether Redis is responding. | |
| String | SET user:1:name "Ada" | Set a string value. | |
| String | GET user:1:name | Read a string value. | |
| String | SET session:abc "value" EX 3600 | Set a value with expiration in seconds. | |
| String | INCR counter:visits | Increment an integer value. | |
| Key | EXISTS user:1:name | Check whether a key exists. | |
| Key | DEL user:1:name | Delete one or more keys. | |
| Key | TTL session:abc | Show remaining expiration time. | |
| Hash | HSET user:1 email ada@example.com age 36 | Set fields on a hash. | |
| Hash | HGETALL user:1 | Read all fields from a hash. | |
| List | LPUSH queue:emails job-1 | Push an item to the left of a list. | |
| List | RPOP queue:emails | Pop an item from the right of a list. | |
| Set | SADD tags:post:1 redis cache database | Add unique values to a set. | |
| Set | SMEMBERS tags:post:1 | Read all set members. | |
| Sorted Set | ZADD leaderboard 100 user:1 90 user:2 | Add scored members. | |
| Sorted Set | ZREVRANGE leaderboard 0 9 WITHSCORES | Read top scores. | |
| Pub/Sub | PUBLISH events:user.created "1" | Publish a message to a channel. | |
| Pub/Sub | SUBSCRIBE events:user.created | Subscribe to a channel. | |
| Stream | XADD orders * user_id 1 total 39.99 | Append an entry to a stream. | |
| Stream | XRANGE orders - + COUNT 10 | Read stream entries. | |
| Admin | INFO | Show server metrics and configuration summary. | |
| Admin | FLUSHDB | Delete all keys from the current database. Use carefully. |
Concepts
Common Redis data types
| Type | Use case | Examples |
|---|---|---|
| String | Cache values, counters, feature flags, sessions. | SET, GET, INCR, MGET |
| Hash | Object-like field storage. | HSET, HGET, HGETALL |
| List | Queues and ordered collections. | LPUSH, RPOP, LRANGE |
| Set | Unique unordered values. | SADD, SMEMBERS, SINTER |
| Sorted Set | Leaderboards and ranked data. | ZADD, ZRANGE, ZREVRANGE |
| Stream | Append-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
- Open Redis Guide and prepare a copy of the input you want to process.
- 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.
- 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