Home > Article > Backend Development > memcache graphical management tool MemAdmin
Following the previous article "Use memcache to save session" After saving the variables, we often want to see their values or detect their status. We can do this through the command line. But the command line is more difficult to understand.
The following is a memcache graphical management tool: MemAdmin
##Download address:
http ://www.junopen.com/memadmin/
MemAdmin is a visual Memcached management and monitoring tool, developed using PHP, small in size and easy to operate.Main functions:
● Server parameter monitoring: STATS, SETTINGS, ITEMS, SLABS, SIZES real-time refresh ● Server performance monitoring: GET, Real-time monitoring of the hit rate of common operations such as DELETE, INCR, DECR, CAS● Supports data traversal to facilitate monitoring of storage content● Supports conditional query to filter out KEY or VALUE that meet the conditions ● Arrays, JSON and other serialized characters are displayed in reverse order ● Other services compatible with the memcache protocol, such as Tokyo Tyrant (except for traversal function) ● Support server connection pool , multi-server management switching is convenient and conciseAfter downloading, obtain a compressed package memadmin-1.0.12.tar.gzExtract the compressed file to obtain the memadmin folder, and copy the memadmin file to the project Directory, you can directly access and run it through the URL. http://localhost/memadmin/ The default account password is admin adminYou can start managing memcache after logging in.The above is the detailed content of memcache graphical management tool MemAdmin. For more information, please follow other related articles on the PHP Chinese website!