Redis is an ultra-simplified memory-based key-value database (key-value). Applications that have certain requirements for concurrency generally use it to store sessions and even the entire database.
There are currently three popular redis visual clients: Redis Client; Redis Desktop Manager; Redis Studio.
Redis Desktop Manager (Recommended learning: Redis Video Tutorial)
A cross-platform Redis desktop management software based on Qt5
Support: Windows 7, Mac OS X 10.10, Ubuntu 14
Features: Written in C, fast response, good performance. But database backup and recovery is not supported.
Project address: https://github.com/uglide/RedisDesktopManager
Redis Studio
Project introduction: Another redis management tool written in C, only supports windows platform , supports xp operating system.
Project address: https://github.com/cinience/RedisStudio
Redis Client
Project introduction: Written in Java, rich in functions, The disadvantage is that the performance is slightly poor, and the connection will be disconnected from time to time when the network is not good.
Project address: https://github.com/caoxinyu/RedisClient
Installation and basic use of redisClient
RedisClient is a GUI tool for the Redis client, using Java swt and Written in jedis, it can facilitate developers to browse the Redis database. The software supports Simplified Chinese and is very suitable for domestic users. You can use it directly without Chinese language
Redis client tool (RedisClient) function
RedisClient will use the resource manager interface style to redis data Presented to users, it can help redis developers and maintainers easily create, modify, delete, and query redis data without knowing the redis command at all. It allows users to easily edit data, cut, copy, and paste redis data, import and export redis data, and sort redis data.
1. Use server management and support server password authentication
2. Manage redis data according to preferences
3. Manage redis data, including:
New Redis data: String, List, hash, set, Sorted set.
For more Redis-related technical articles, please visit the Introduction to Using Redis Database Tutorial column to learn!
The above is the detailed content of What are the redis client tools?. For more information, please follow other related articles on the PHP Chinese website!