Adds common Redis commands to VS Code
Adds common Redis commands to VS Code Command Palette.
The Plugin on Visual Studio Marketplace.
Ctrl + Shift + P
Extensions: Install Extension
info
get
set
hget
hset
del
hdel
hgetall
llen
lpush
lpushx
rpush
rpushx
lindex
linsert
lrange
lpop
rpop
lset
ltrim
You can configure multiple Redis connections on your workspace.
First, place a file named “redis.json” in .vscode folder. Open “redis.json” and edit it following the sample below:
{
"databases": [
{
"name": "local",
"url": "redis://localhost:6379"
},
{
"name": "production",
"url": "rediss://production-address:9091",
"password": "super_secret_password"
}
]
}
Execute the command Redis: Reload Configuration
to load the servers listed in configuration file.
See Changelog.
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use Semantic Versioning for versioning. For the versions available, see the tags on this repository.
This project is available under MIT License. See LICENSE.
Thanks goes to these wonderful people (emoji key):
LexCher 💻 | Dave Glendenning 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!