Memcached windows 下安装与测试
Memcached 是一个高性能的分布式内存对象缓存系统,用于动态Web应用以减轻数据库负载。它通过在内存中缓存数据和对象来减少读取数据库的次数,从而提供动态、数据库驱动网站的速度。Memcached基于一个存储键/值对的hashmap。其守护进程(daemon )是用C写的,但是客户端可以用任何语言来编写,并通过memcached协议与守护进程通信。但是它并不提供冗余(例如,复制其hashmap条目);当某个服务器S停止运行或崩溃了,所有存放在S上的键/值对都将丢失。
Memcached官方:http://danga.com/memcached/
关于Memcached的介绍请参考:Memcached深度分析
下载Windows的Server端
下载地址:http://code.jellycan.com/memcached/
安装Memcache Server(也可以不安装直接启动)
1. 下载memcached的windows稳定版,解压放某个盘下面,比如在c:\memcached
2. 在CMD下输入 "c:\memcached\memcached.exe -d install" 安装.
3. 再输入:"c:\memcached\memcached.exe -d start" 启动。NOTE: 以后memcached将作为windows的一个服务每次开机时自动启动。这样服务器端已经安装完毕了。
如果下载的是二进制的版本,直接运行就可以了,可以加上参数来加以设置。
常用设置:
-p <num> 监听的端口
-l <ip_addr> 连接的IP地址, 默认是本机
-d start 启动memcached服务
-d restart 重起memcached服务
-d stop|shutdown 关闭正在运行的memcached服务
-d install 安装memcached服务
-d uninstall 卸载memcached服务
-u <useame> 以<useame>的身份运行 (仅在以root运行的时候有效)
-m <num> 最大内存使用,单位MB。默认64MB
-M 内存耗尽时返回错误,而不是删除项
-c <num> 最大同时连接数,默认是1024
-f <factor> 块大小增长因子,默认是1.25
-n <bytes> 最小分配空间,key+value+flags默认是48
-h 显示帮助
然后就可以用.net 的memcached客户端来试一下了。
C# 下可用的API(每个客户端API中都有详细的说明和注释)
https://sourceforge.net/projects/memcacheddotnet/
http://www.codeplex.com/EnyimMemcached/ - Client developed in .NET 2.0 keeping performance and extensibility in
mind. (Supports consistent hashing.)
http://code.google.com/p/beitmemcached/ - Client developed by BeIT with many new features
转载出处: http://www.yaosansi.com/
----------------------------------------------------------------------------------------
Client调用:
下载示例代码网址: http://sourceforge.net/projects/memcacheddotnet/
C#/.NET memcached client library. This library can be used by .NET projects to access memcached servers. Ported from the Java memcached library located athttp://www.whalin.com/memcached/.
e.g.:
/** * MemcachedBench.cs * * Copyright (c) 2005 * Tim Gebhardt <tim@gebhardtcomputing.com> * * Based off of code written by * Greg Whalin <greg@meetup.com> * for his Java Memcached client: * http://www.whalin.com/memcached/ * * * See the memcached website: * http://www.danga.com/memcached/ * * This module is Copyright (c) 2005 Tim Gebhardt. * All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later * version. * * This library is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU Lesser General Public License for more * details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Tim Gebhardt<tim@gebhardtcomputing.com> * @version 1.0 */namespace Memcached.MemcachedBench{ using System; using System.Collections; using Memcached.ClientLibrary; public class MemcachedBench { /// <summary> /// Arguments: /// arg[0] = the number of runs to do /// arg[1] = the run at which to start benchmarking /// </summary> /// <param name="args"></param> [STAThread] public static void Main(String[] args) { int runs = 100; int start = 200; if(args.Length > 1) { runs = int.Parse(args[0]); start = int.Parse(args[1]); }//可以设置多个服务器列表//string[] serverlist = { "127.0.0.1:11211" , "140.192.34.73:11211" }; string[] serverlist = { "127.0.0.1:11211" };//, "140.192.34.73:11211" }; // initialize the pool for memcache servers SockIOPool pool = SockIOPool.GetInstance(); pool.SetServers(serverlist); pool.InitConnections = 3; pool.MinConnections = 3; pool.MaxConnections = 5; pool.SocketConnectTimeout = 1000;pool.SocketTimeout = 3000; pool.MaintenanceSleep = 30; pool.Failover = true; pool.Nagle = false; pool.Initialize(); // initialize the pool for memcache servers// SockIOPool pool = SockIOPool.Instance;// pool.Servers = serverlist;//// pool.InitConn = 5;// pool.MinConn = 5;// pool.MaxConn = 50;// pool.MaintSleep = 30;// pool.SocketTO = 1000;//// pool.Nagle = false;// pool.Initialize();//// // get client instance MemcachedClient mc = new MemcachedClient(); mc.EnableCompression = false;// MemcachedClient mc = new MemcachedClient();// mc.CompressEnable = false;// mc.CompressThreshold = 0;// mc.Serialize = true; string keyBase = "testKey"; string obj = "这是我的字符串This is a test of an object blah blah es, serialization does not seem to slow things down so much. The gzip compression is horrible horrible performance, so we only use it for very large objects. I have not done any heavy benchmarking recently"; long begin = DateTime.Now.Ticks; for(int i = start; i < start+runs; i++) { mc.Set(keyBase + i, obj); } long end = DateTime.Now.Ticks; long time = end - begin; Console.WriteLine(runs + " 设置花费的时间-sets: " + new TimeSpan(time).ToString() + "ms"); begin = DateTime.Now.Ticks; int hits = 0; int misses = 0; for(int i = start; i < start+runs; i++) { string str = (string) mc.Get(keyBase + i);Console.WriteLine("key={0},value={1}",keyBase+i,str); if(str != null) ++hits; else ++misses; } end = DateTime.Now.Ticks; time = end - begin; Console.WriteLine(runs + "读取花费的时间- gets: " + new TimeSpan(time).ToString() + "ms"); Console.WriteLine("Cache hits,成功: " + hits.ToString()); Console.WriteLine("Cache misses,失败: " + misses.ToString()); IDictionary stats = mc.Stats(); foreach(string key1 in stats.Keys) { Console.WriteLine(key1); Hashtable values = (Hashtable)stats[key1]; foreach(string key2 in values.Keys) { Console.WriteLine(key2 + ":" + values[key2]); } Console.WriteLine(); } SockIOPool.GetInstance().Shutdown();Console.ReadKey(); } }}
服务器端: https://files.cnblogs.com/wucg/memcached-1.2.6-win32-bin.zip
下载Client库文件及示例,vs2008,.netframework 1.0,2.0 https://files.cnblogs.com/wucg/clientlib.zip
作者:庚武
来源链接:https://www.cnblogs.com/wucg/archive/2011/03/01/1968185.html
版权声明:
1、JavaClub(https://www.javaclub.cn)以学习交流为目的,由作者投稿、网友推荐和小编整理收藏优秀的IT技术及相关内容,包括但不限于文字、图片、音频、视频、软件、程序等,其均来自互联网,本站不享有版权,版权归原作者所有。
2、本站提供的内容仅用于个人学习、研究或欣赏,以及其他非商业性或非盈利性用途,但同时应遵守著作权法及其他相关法律的规定,不得侵犯相关权利人及本网站的合法权利。
3、本网站内容原作者如不愿意在本网站刊登内容,请及时通知本站(javaclubcn@163.com),我们将第一时间核实后及时予以删除。