MemCache在win7上的可视化配置以及Nodejs/Net应用

前端开发 作者: 2024-08-21 04:45:01
惯例科普:MemCache是一套分布式的高速缓存系统,由LiveJournal的Brad Fitzpatrick开发,但目前被许多网站使用以提升网站的访问速度,尤其对于一些大型的、需要频繁访问数据库的

安装步骤:

具体实施

cd C:\Program Files\MemCacheD
memcached.exe -d install
memcached.exe -d start
memcached.exe -h
using System;
 System.Collections.Generic;
 System.Linq;
 System.Web;
 System.Web.UI;
 System.Web.UI.WebControls;

 Memcached.ClientLibrary;  //--------------引用

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender,EventArgs e)
    {
        if (!IsPostBack)
        {

            //参数设置
            string SockIOPoolName = "demo";
            string[] MemcacheServiceList = { 127.0.0.1:11216 };

            设置连接池
            SockIOPool SPool = SockIOPool.GetInstance(SockIOPoolName);
            SPool.SetServers(MemcacheServiceList);
            SPool.Initialize();


            实例化Client
            MemcachedClient MClient = new MemcachedClient();
            MClient.PoolName = SockIOPoolName;
            MClient.Add(",Hello World);

            Response.Write(缓存的值:" + MClient.Get(Key1001));

        }
    }
}
router.get('/',function (req,res,next) {

    var Memcached = require('cacher-memcached');
    var cacher = new Memcached("192.168.20.135:11216",{});

    cacher.set("key01","testValue1",10);
    cacher.get('key01',1)">(err,val) {
        console.log("MemCache取值为:" + val);
    });


    res.render('index',{title: "cacher-memcahced测试~"});

});
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_65903.html