Adds common Redis commands to VS Code Command Palette
- Press
Ctrl + Shift + P - Pick
Extensions: Install Extension - Search for vscode-redis
- Multiple Redis connections;
- Switch between server connections;
- Execute any Redis command with
Redis: Execute Command - "Command Palette" supported Redis commands:
infogetsethgethsetdelhdelhgetall
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": "http://localhost:6379" }, { "name": "production", "addr": "http://production-address:9091", "pwd": "super_secret_password" } ] } Execute the command Redis: Reload Configuration to load the servers listed in configuration file.
https://github.com/vitorsalgado/vscode-redis/blob/master/release-notes.md
MIT © vitorsalgado
