码迷,mamicode.com
首页 > 系统相关 > 详细

mencache的使用二

时间:2017-02-27 13:11:34      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:ring   cti   pac   rgs   fail   集中   namespace   sock   memcach   

 在这里说的是在C#中的使用,在C#中使用是需要引入驱动的,

可以在网上找,这里推荐一个链接http://sourceforge.net/projects/memcacheddotnet/

将Memcached.ClientLibrary;引入。另外的 commands.dll log4net.dll,ICSharpCode.SharpZipLib.dll

等,应该是被以来的,下面的代码显示,使用到的类只在Memcacahed.ClientLibrary程序集中。其中log4net是

memcache记录日志所用。

简单的代码如下:

using Memcached.ClientLibrary;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace memcache
{
    class Program
    {
        static void Main(string[] args)
        {

            string[] server = { "10.21.160.31:11211"};
            SockIOPool pool = SockIOPool.GetInstance();//在Memcached.ClientLibrary程序集里。
            pool.SetServers(server);
            pool.InitConnections = 3;
            pool.MinConnections = 3;
            pool.MaxBusy = 5;
            pool.SocketConnectTimeout = 1000;
            pool.SocketTimeout = 3000;
            pool.MaintenanceSleep = 30;
            pool.Failover = true;
            pool.Nagle = false;
            pool.Initialize();
            //获得客户端实例
            MemcachedClient client = new MemcachedClient();//在Memcached.ClientLibrary程序集里
            client.EnableCompression = false;
            client.Add("keyd1", "value12dfsdf", DateTime.Now.AddHours(1), 0);
            Console.WriteLine(client.Get("keyd1").ToString());
            Console.ReadKey();
        }
    }
}

 

mencache的使用二

标签:ring   cti   pac   rgs   fail   集中   namespace   sock   memcach   

原文地址:http://www.cnblogs.com/xiaoai123/p/6473137.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!