memcache使用

系统 1584 0

一: 安装

     memcahce像redis,mongodb一样都需要开启他们自己的服务端,我们下载 Memcached_1.2.5.zip ,然后放到C盘,修改文件

名为memcached。

1:install

     install可以说是万能通用命令,首先我们转到memcached目录,然后 memcached.exe -d install 即可。

         memcache使用

2:start

    现在我们只要启动start即可,要注意的就是memecache默认的端口是11211,当然我也不想重新指定端口了。

         memcache使用

3:stop,uninstall

     这两个就不截图了,一个是停止,一个是卸载,反正都是万能通用命令。

 

二:驱动程序

   memcache的服务器我们就已经开启好了,由于在公司最近一直都在用php,算了还是用C#驱动吧,谁让这是.net

社区呢,下载 C#驱动 ,既然是缓存服务器,只要有基本的CURD,我想应该就差不多了。

      
         1
      
      
        using
      
      
         System;


      
      
         2
      
      
        using
      
      
         System.Collections.Generic;


      
      
         3
      
      
         4
      
      
        namespace
      
      
         BeIT.MemCached


      
      
         5
      
      
        {


      
      
         6
      
      
        class
      
      
         Example


      
      
         7
      
      
            {


      
      
         8
      
      
        public
      
      
        static
      
      
        void
      
       Main(
      
        string
      
      
        [] args)


      
      
         9
      
      
                {


      
      
        10
      
      
        //
      
      
        通过配置文件初始化memcache实例
      
      
        11
      
                   MemcachedClient cache = MemcachedClient.GetInstance(
      
        "
      
      
        MyConfigFileCache
      
      
        "
      
      
        );


      
      
        12
      
      
        13
      
      
        //
      
      
        编辑(可以模拟session操作,缓存20分钟)
      
      
        14
      
                   cache.Set(
      
        "
      
      
        name
      
      
        "
      
      , 
      
        "
      
      
        一线码农
      
      
        "
      
      , DateTime.Now.AddMinutes(
      
        20
      
      
        ));


      
      
        15
      
      
        16
      
      
        //
      
      
        获取
      
      
        17
      
      
        var
      
       result = cache.Get(
      
        "
      
      
        name
      
      
        "
      
      
        );


      
      
        18
      
      
        19
      
                   Console.WriteLine(
      
        "
      
      
        获取name的缓存数据为: 
      
      
        "
      
       +
      
         result);


      
      
        20
      
      
        21
      
      
        //
      
      
        删除
      
      
        22
      
                   cache.Delete(
      
        "
      
      
        name
      
      
        "
      
      
        );


      
      
        23
      
      
        24
      
                   Console.WriteLine(
      
        "
      
      
        \n成功删除cache中name的数据
      
      
        "
      
      
        );


      
      
        25
      
      
        26
      
                   result = cache.Get(
      
        "
      
      
        name
      
      
        "
      
      
        );


      
      
        27
      
      
        28
      
                   Console.WriteLine(
      
        "
      
      
        \n再次获取cache中name的数据为:
      
      
        "
      
       + (result ?? 
      
        "
      
      
        null
      
      
        "
      
      ) + 
      
        "
      
      
        \n
      
      
        "
      
      
        );


      
      
        29
      
      
        30
      
      
        //
      
      
        查看下memecahce的运行情况
      
      
        31
      
      
        foreach
      
       (KeyValuePair<
      
        string
      
      , Dictionary<
      
        string
      
      , 
      
        string
      
      >> host 
      
        in
      
      
         cache.Status())


      
      
        32
      
      
                    {


      
      
        33
      
                       Console.Out.WriteLine(
      
        "
      
      
        Host: 
      
      
        "
      
       +
      
         host.Key);


      
      
        34
      
      
        foreach
      
       (KeyValuePair<
      
        string
      
      , 
      
        string
      
      > item 
      
        in
      
      
         host.Value)


      
      
        35
      
      
                        {


      
      
        36
      
                           Console.Out.WriteLine(
      
        "
      
      
        \t
      
      
        "
      
       + item.Key + 
      
        "
      
      
        : 
      
      
        "
      
       +
      
         item.Value);


      
      
        37
      
      
                        }


      
      
        38
      
      
                        Console.Out.WriteLine();


      
      
        39
      
      
                    }


      
      
        40
      
      
        41
      
      
                    Console.Read();


      
      
        42
      
      
                }


      
      
        43
      
      
            }


      
      
        44
      
       }
    

我们再定义下配置文件,既然memcache可以用于分布式,那就避免不了将cache分摊到几台服务器上去,可以看到,下面的

配置也是非常简单的,当然分配的法则自然是memcache自身的算法决定的,最后别忘了在另一台服务器上开放一个端口就它

就行了。

      
        <?
      
      
        xml version="1.0" encoding="utf-8" 
      
      
        ?>
      
      
        <
      
      
        configuration
      
      
        >
      
      
        <
      
      
        configSections
      
      
        >
      
      
        <
      
      
        section 
      
      
        name
      
      
        ="beitmemcached"
      
      
         type
      
      
        ="System.Configuration.NameValueSectionHandler"
      
      
        />
      
      
        </
      
      
        configSections
      
      
        >
      
      
        <
      
      
        appSettings
      
      
        >
      
      
        </
      
      
        appSettings
      
      
        >
      
      
        <
      
      
        beitmemcached
      
      
        >
      
      
        <
      
      
        add 
      
      
        key
      
      
        ="MyConfigFileCache"
      
      
         value
      
      
        ="127.0.0.1:11211"
      
      
        />
      
      
        <!--
      
      
        <add key="MyConfigFileCache" value="127.0.0.1:11211,127.0.0.1:8888" />
      
      
        -->
      
      
        </
      
      
        beitmemcached
      
      
        >
      
      
        </
      
      
        configuration
      
      
        >
      
    

memcache使用

 

下面是打包程序: BeITMemcached  ,也可以到 codegoogle 去下载。

memcache使用


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论