Reputation: 3615
Is there any IDE which provides auto completion for Redis? With the ones i use currently, i need to type out everything, but it would surely be nice and time saving to have auto completion and syntax corrections?
Upvotes: 2
Views: 975
Reputation: 7239
[Disclaimer] I'm the founder of Redsmin
Redsmin is an online Redis GUI that provides commands and keys auto-completion out-of-the-box as well as inline-documentation.
Start writing what you want, hit tab > select > up/down -> enter and you're done.
Redsmin is indeed not an IDE but is a tool of great help when developing redis-based applications.
PS: We currently do not support syntax correction but I took the liberty to add this feature to our roadmap, thanks!
Upvotes: 2
Reputation: 39009
The redis-cli client has tab autocompletion enabled. I'm not aware of any IDE for Redis, and am not sure how this would work, since Redis is almost always embedded in another language through some client library.
Upvotes: 0