首页 > 代码库 > (二)在.net中如何使用Memcached
(二)在.net中如何使用Memcached
Step1:第一步当然是下载Memcached for c# API,
将这几个dll引用到项目中去
step2:上代码:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Mvc; 6 using Memcached.ClientLibrary; 7 8 namespace MvcDemo.Controllers 9 {10 public class MemCachedController : Controller11 {12 //13 // GET: /MemCached/14 15 public ActionResult Index()16 {17 18 string[] servers = { "172.16.200.67:41211" };19 SockIOPool pool = SockIOPool.GetInstance("test");20 pool.SetServers(servers);21 pool.Initialize();22 MemcachedClient memClient = new MemcachedClient();23 memClient.PoolName = "test";24 memClient.EnableCompression = false;25 bool b= memClient.Set("k2", "lixiaofei",DateTime.Now.AddMinutes(2));26 ViewBag.Name= memClient.Get("k2");27 return Content(ViewBag.Name);28 }29 30 }31 }
(二)在.net中如何使用Memcached
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。