|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
聪明的你,显然已经逐渐的开悟了,慢慢的理解了编程的概念,那么祝贺你,你已经迈出了成功的第一步。
-p 监听的端口
-l 毗连的IP地址, 默许是本机
-d start 启动memcached办事
-d restart 重起memcached办事
-d stopshutdown 封闭正在运转的memcached办事
-d install 装置memcached办事
-d uninstall 卸载memcached办事
-u 以的身份运转 (仅在以root运转的时分无效)
-m 最大内存利用,单元MB。默许64MB
-M 内存耗尽时前往毛病,而不是删除项
-c 最大同时毗连数,默许是1024
-f 块巨细增加因子,默许是1.25
-n 最小分派空间,key+value+flags默许是48
-h 显示匡助
memcached的根基号令(当memcached 启动后 用于对memcached办理的数据和自己运转形态相干的号令):
Command
Description
Example
get
Reads a value
get mykey
set
Set a key unconditionally
set mykey 0 60 5
add
Add a new key
add newkey 0 60 5
replace
Overwrite existing key
replace key 0 60 5
append
Append data to existing key
append key 0 60 15
prepend
Prepend data to existing key
prepend key 0 60 15
incr
Increments numerical key value by given number
incr mykey 2
decr
Decrements numerical key value by given number
decr mykey 5
delete
Deletes an existing key
delete mykey
flush_all
Invalidate specific items immediately
flush_all
Invalidate all items in n seconds
flush_all 900
stats
Prints general statistics
stats
Prints memory statistics
stats slabs
Prints memory statistics
stats malloc
Print higher level allocation statistics
stats items
stats detail
stats sizes
Resets statistics
stats reset
version
Prints server version.
version
verbosity
Increases log level
verbosity
quit
Terminate telnet session
quit
对检查的信息的关头字中英文对比表
pid
memcache办事器的历程ID
uptime
办事器已运转的秒数
time
办事器以后的unix工夫戳
version
memcache版本
pointer_size
以后操作体系的指针巨细(32位体系通常为32bit)
rusage_user
历程的累计用户工夫
rusage_system
历程的累计体系工夫
curr_items
办事器以后存储的items数目
total_items
从办事器启动今后存储的items总数目
bytes
以后办事器存储items占用的字节数
curr_connections
以后翻开着的毗连数
total_connections
从办事器启动今后已经翻开过的毗连数
connection_structures
办事器分派的毗连机关数
cmd_get
get号令(获得)总恳求次数
cmd_set
set号令(保留)总恳求次数
get_hits
总射中次数
get_misses
总未射中次数
evictions
为获得余暇内存而删除的items数(分派给memcache的空间用满后需求删除旧的items来失掉空间分派给新的items)
bytes_read
总读取字节数(恳求字节数)
bytes_written
总发送字节数(了局字节数)
limit_maxbytes
分派给memcache的内存巨细(字节)
threads
以后线程数
如果不会怎么办,我的视频教程里有个最简单的留言板 最开始离不开模仿, |
|