- 浏览: 159141 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
一凡蹈客:
really good
百万级访问网站前期的技术准备 -
lllt:
这种效果实际上不需要任何js的
加载图片时由模糊变清楚原理---类似QQ空间的相册的效果 -
JavaStudyEye:
如何在三个月内获得三年的工作经验------实际的很 -
JavaStudyEye:
...
如何在三个月内获得三年的工作经验------实际的很 -
filish108:
如何在三个月内获得三年的工作经验------实际的很
memcached Telnet Interface
This is a short summary of everything important that helps to inspect a running memcached instance. How To Connect Use "ps -ef" to find out which IP and port was passed when memcached was started and use the same with telnet to connect to memcache. Example: telnet 10.10.1.24 23456
Supported Commands The supported commands (the official ones and some unofficial) are documented in the doc/protocol.txt document. Sadly the syntax description isn't really clear and a simple help command listing the existing commands would be much better. Here is an overview of the commands you can find in the source (as of 16.12.2008):
Traffic Statistics You can query the current traffic statistics using the command statsYou will get a listing which serves the number of connections, bytes in/out and much more.
Example Output: STAT pid 14868 STAT uptime 175931 STAT time 1220540125 STAT version 1.2.2 STAT pointer_size 32 STAT rusage_user 620.299700 STAT rusage_system 1545.703017 STAT curr_items 228 STAT total_items 779 STAT bytes 15525 STAT curr_connections 92 STAT total_connections 1740 STAT connection_structures 165 STAT cmd_get 7411 STAT cmd_set 28445156 STAT get_hits 5183 STAT get_misses 2228 STAT evictions 0 STAT bytes_read 2112768087 STAT bytes_written 1000038245 STAT limit_maxbytes 52428800 STAT threads 1 END
Memory Statistics You can query the current memory statistics using stats slabs
Example Output: STAT 1:chunk_size 80 STAT 1:chunks_per_page 13107 STAT 1:total_pages 1 STAT 1:total_chunks 13107 STAT 1:used_chunks 13106 STAT 1:free_chunks 1 STAT 1:free_chunks_end 12886 STAT 2:chunk_size 100 STAT 2:chunks_per_page 10485 STAT 2:total_pages 1 STAT 2:total_chunks 10485 STAT 2:used_chunks 10484 STAT 2:free_chunks 1 STAT 2:free_chunks_end 10477 [...] STAT active_slabs 3 STAT total_malloced 3145436 END
Which Keys Are Used? There seems to be no builtin function to determine the currently set keys. However you can use the stats itemscommand to determine how many keys do exist. stats items STAT items:1:number 220 STAT items:1:age 83095 STAT items:2:number 7 STAT items:2:age 1405 [...] ENDThis at least helps to see if any keys are used. To dump the key names from a PHP script that already does the memcache access you can use the PHP code from100days.de.
Never Set a Timeout > 30 Days! While this has nothing to do with the telnet access this is a problem you might run into. If you try to "set" or "add" a key with a timeout bigger than the allowed maximum you might not get what you expect because memcached then treats the value as a Unix timestamp. Also if the timestamp is in the past it will do nothing at all. Your command will silently fail. So if you want to use the maximum lifetime specify 2592000. Example: set my_key 0 2592000 1 1 Disappearing Keys on Overflow Despite the documentation saying something about wrapping around 64bit overflowing a value using "incr" causes the value to disappear. It needs to be created using "add"/"set" again.
|
memcached telnet相关操作
elnet localhost 11211
//保存
set good 32 0 10
helloworld
STORED
//取回
gets good
VALUE good 32 10 10
helloworld
END
//替换
replace good 32 0 10
worldhello
STORED
get good
VALUE good 32 10
worldhello
END
//尾部添加
append good 32 0 5
after
STORED
get good
VALUE good 32 15
worldhelloafter
END
//头部添加
prepend good 32 0 6
before
STORED
get good
VALUE good 32 21
beforeworldhelloafter
END
//删除
delete good
DELETED
get good
END
delete good
NOT_FOUND
cas good 32 0 10 hel
helloworld
EXISTS
gets good
VALUE good 32 10 10
helloworld
END
cas bad 32 0 10 good
worldhello
NOT_FOUND
//统计
stats items
STAT items:1:number 1
STAT items:1:age 24
STAT items:1:evicted 0
STAT items:1:outofmemory 0
END
stats sizes
96 1
END
stats slabs
STAT 1:chunk_size 88
STAT 1:chunks_per_page 11915
STAT 1:total_pages 1
STAT 1:total_chunks 11915
STAT 1:used_chunks 11914
STAT 1:free_chunks 1
STAT 1:free_chunks_end 11913
STAT 2:chunk_size 112
STAT 2:chunks_per_page 9362
STAT 2:total_pages 1
STAT 2:total_chunks 9362
STAT 2:used_chunks 9361
STAT 2:free_chunks 1
STAT 2:free_chunks_end 9361
STAT 5:chunk_size 232
STAT 5:chunks_per_page 4519
STAT 5:total_pages 1
STAT 5:total_chunks 4519
STAT 5:used_chunks 4518
STAT 5:free_chunks 1
STAT 5:free_chunks_end 4518
STAT active_slabs 3
STAT total_malloced 3145472
END
stats items
STAT items:1:number 1
STAT items:1:age 1768
STAT items:1:evicted 0
STAT items:1:outofmemory 0
END
stats
STAT pid 18261
STAT uptime 528593
STAT time 1237277383
STAT version 1.2.6
STAT pointer_size 32
STAT rusage_user 0.004999
STAT rusage_system 0.015997
STAT curr_items 1
STAT total_items 2
STAT bytes 66
STAT curr_connections 2
STAT total_connections 13
STAT connection_structures 3
STAT cmd_get 11
STAT cmd_set 8
STAT get_hits 2
STAT get_misses 9
STAT evictions 0
STAT bytes_read 1342
STAT bytes_written 8752
STAT limit_maxbytes 134217728
STAT threads 1
END
使用usr/bin/perl /root/memcached-1.2.6/scripts/memcached-tool localhost:11211
output
# Item_Size Max_age 1MB_pages Count Full?
1 88 B 1531 s 1 1 no
2 112 B 0 s 1 0 no
5 232 B 0 s 1 0 no
# slab class编号
Item_Size Chunk大小
Max_age LRU内最旧的记录的生存时间
1MB_pages 分配给Slab的页数
Count Slab内的记录数
Full? Slab内是否含有空闲chunk
发表评论
-
Linux系统中memcache和memcached安装方法
2011-08-23 02:29 1075Memcache 是一 ... -
apache不解析php文档?提示需要下载
2011-08-22 06:25 1225作者:陆文举 http://blog.luwenju.c ... -
Linux上全源码安装Apache、MySQL、PH
2011-08-21 20:11 1239Linux上全源码安装Apache、MySQL、PHP、W ... -
安装PHP常见错误解决error
2011-08-21 19:48 1297PHP的安装虽然有时候很简单,可是如果应用一多,我们安装起 ... -
php需要学的真多,一个php牛人的需要的经历
2011-02-11 18:12 1375php需要学的真多。因为触级的太多。一个php牛人的需要的 ... -
Firebug基本知识推广
2010-11-25 19:33 653... -
通过Filter实现二级域名和URLRewrite
2010-11-24 20:45 890通过Filter实现二级域名和URLRewrite 文章分类 ... -
将 WordPress 文章同步发送到 Twitter,新浪微博,搜狐微博,QQ微博,嘀咕,开心,人人
2010-11-21 00:54 3397这两天没事,Forece 又开始折腾了,想把自己用 Word ... -
Smarty foreach详解
2010-11-11 09:44 1098Smar ... -
30分钟速通,PHP模板引擎Smarty
2010-11-09 20:10 162130分钟速通,PHP模板引擎Smarty 分类: ... -
PHP5面向对象学习教程(7月十五写的)
2010-10-14 07:31 759PHP5面向对象教程.CHM (41.83 KB) 下 ... -
PHP中 __FILE__ 和 dirname(__FILE__) 使用
2010-10-14 06:58 1234__FILE__ 返回网站根目录 ... -
建立host 文件桌面快捷方式
2010-09-27 19:10 1250A) 关于建立 host 文件记事本打开的快捷方式: ... -
Apache httpd.conf详解
2010-09-25 13:57 1122Apache服务器的设置文件 ... -
smarty整理总结
2010-09-13 18:19 7911.smarty的配置 首先,使用smarty第 ... -
从源码安装apache2,遇到错误:cannot install `libaprutil-1.la' LAMP 2010-07-23 20:57:15 阅读3
2010-09-08 10:59 920从源码安装apache2,遇到错误:cannot ins ... -
Tortoise SVN 客户端 基本用法
2010-09-07 20:07 954Tortoise SVN 客户端 基 ... -
phpMyAdmin安装配置方法全过程,及问题解决
2010-01-28 10:24 1238今天调试PHP数据库Mysql ... -
找出占用你端口的罪魁祸首
2010-01-03 14:52 949做开发的同学经常会碰到一个恼人的问题,那就是启动服务器时会抛出 ... -
PHP常见面试题目深入解答分析
2009-12-28 23:39 1308很久没有更新了,继续上一篇文.再来讨论几道常见的试题.查看 ...
相关推荐
1. **命令行测试**:使用telnet命令行工具连接到MemCache服务器,进行简单的键值对操作。 2. **性能监控**:通过MemCache的统计接口,可以获取内存使用情况、命中率等性能指标。 3. **第三方工具**:使用像`mcstat`...
- 默认情况下,Memcache会使用11211端口,并且在本地主机上运行。如果你需要更改这些设置,可以在启动服务时提供相应的参数。例如,`memcached.exe -p 12345 -l 192.168.1.100`将使Memcache监听12345端口并在IP地址...
4. **验证安装**:在命令行中输入`net start memcached`启动服务,然后通过`telnet localhost 11211`测试连接,如果成功,说明Memcache已经安装并运行。 5. **集成到Web应用程序**:为了在PHP、Python、Java等应用...
5. **验证安装**:使用`telnet *.*.*.* 11211`验证memcache是否启动成功。 ##### 3.4 安装Tomcat 1. **登录系统**:使用`appuser`登录系统。 2. **解压安装包**:使用命令`tar –zxvf /app/soft/tomcat.tar.gz`解压...
3. 使用telnet工具连接到Memcached服务器,如`telnet localhost 11211`,然后尝试set和get操作验证功能。 **使用场景与注意事项** Memcached适用于需要快速缓存数据的应用,如Web应用的session存储、高并发的...
- 默认情况下,Memcached不使用认证,因此强烈建议限制只在内网环境中使用,或配置防火墙规则以限制访问。 - 如果需要,可以使用第三方工具如`libmemcached-tools`中的`memcached-tool`进行监控和管理。 通过以上...
例如,在PHP中,你可以使用`memcached`或`memcache`扩展来操作Memcached服务器。 7. **优化与管理** 对于生产环境,你可能需要进行更深入的配置,如设置超时时间、调整缓存策略、监控性能等。这些可以通过修改启动...
为了测试Memcached是否正常工作,你可以使用telnet客户端连接到本地的11211端口,并进行一些基本操作,如设置和获取键值对: ```bash # telnet localhost 11211 ``` 在telnet会话中,输入`set key 0 0 5`,然后按...
本文档将详细介绍如何在Linux环境下部署和配置Memcache。 #### 二、环境准备 为了确保部署过程顺利进行,我们需要准备好以下软件包: 1. **Libevent**:用于事件处理的库,是Memcached运行的基础。 2. **Memcached...
标题中的“netstat+telnet+m-top+phpmemcached”提到了四个在IT领域中用于系统监控和管理的重要工具。...在给定的压缩包文件中,`memcache-top-v0.6`可能就是m-top的一个特定版本,供你下载安装和使用。
6. 测试Memcache是否能够正常工作,可以使用Telnet命令连接到Memcache服务: ```cmd telnet ***.*.*.***211 ``` 连接成功后,键入stats查看服务状态。 7. 最后,需要下载Memcache的PHP扩展并进行配置。下载地址...
在 Linux 系统下部署 Memcached 是一个常见的需求,然而在安装过程中可能会遇到各种各样的问题,如依赖库缺失等。本文将详细介绍如何在 Linux 系统下安装 Memcached,同时解决在安装过程中可能遇到的一些问题。 ###...
如果在slave节点上能够成功获取到在master节点上设置的数据,说明复制功能已经正常工作。 5. 应用场景与注意事项 repcached的主从复制功能可以实现数据的冗余备份,防止因主节点故障导致的数据丢失。然而,需要注意...
在命令提示符下,输入`H:/wamp/www/php api/memcache/memcached.exe -d install`来尝试安装memcached服务。有时可能会遇到"failed to install service or service already installed"的错误。这时,你需要以管理员...
为了测试 Memcached 是否正常工作,你可以使用 telnet 工具连接到本地的11211端口: ``` telnet localhost 11211 ``` 输入 `get` 命令后回车,如果没有返回错误信息,说明 Memcached 已经正常运行。 至此,你...
3. **使用说明**:压缩包中的`readme.txt`文件提供了详细的使用指南,包括启动、停止服务的方法,以及如何调整配置参数。务必阅读此文件,以确保正确运行Memcached。 4. **客户端支持**:在Windows上,你需要一个与...
3. 使用`telnet localhost 11211`尝试连接到本地的Memcached服务,如果连接成功,说明服务运行正常。 日常操作中,可以使用以下命令管理Memcached服务: - 启动服务:`./memcached -d -m 1024 -u root -l 127.0.0.1...
通过以上内容,我们了解了memcached的基本概念、安装与使用方法,特别是在Windows环境下如何利用提供的资源进行安装和管理。如果你需要在Windows 10系统上部署memcached,可以参考提供的文档和执行文件进行操作。
通过ps命令查看进程列表中是否存在memcache进程,使用netstat命令检查11211端口是否被监听,或者通过telnet命令直接连接到11211端口测试服务响应。 8. 常用命令: 提供了启动和关闭Memcached服务的命令,关闭服务...
- 各组件的具体安装位置会在安装过程中说明。 2. **常用命令**: - **查看Nginx状态**:`systemctl status nginx` - **重启Nginx**:`systemctl restart nginx` - **查看Apache状态**:`systemctl status httpd`...