一、安装Memcached

Memcached1.2.6

http://files.cnblogs.com/files/jasonduan/11465401756756.zip

Memcached.ClientLibrary

http://files.cnblogs.com/files/jasonduan/10524626586159.zip

网上好多文章

http://jingyan.baidu.com/article/335530da5f765019cb41c3ec.html

http://jingyan.baidu.com/album/c85b7a640fbfd5003bac9500.html

memcached.exe -d install

memcached.exe -d start

Memcached还有其他的一些常用的命令如下:

-p 监听的端口 --默认端口11211
      -l 连接的IP地址, 默认是本机
      -d start 启动memcached服务
      -d restart 重起memcached服务
      -d stop|shutdown 关闭正在运行的memcached服务
      -d install 安装memcached服务
      -d uninstall 卸载memcached服务
      -u 以的身份运行 (仅在以root运行的时候有效)
      -m 最大内存使用,单位MB。默认64MB
      -M 内存耗尽时返回错误,而不是删除项 默认64
      -c 最大同时连接数,默认是1024
      -f 块大小增长因子,默认是1.25
      -n 最小分配空间,key+value+flags默认是48
      -h 显示帮助

在运行下输入“regedit”打开注册表,  找到路径 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\memcached,下面找 到一个ImagePath 的字符串项,正好是服务的执行路径的字符串,

双击该串,在后面追加入“-m 1024 -c 2048 -p 11200”  重启服务即可

查看缓存区块,分析结果可调配-f参数
telnet 127.0.0.1 11200

查看缓存的各种状态

stats

二、定义MemCachedHelper

<add key="memcachedServer" value="127.0.0.1:11200" />

using System.Linq;
using System.Web;
using System.Configuration;
using Memcached.ClientLibrary;
using System;
using System.Collections; namespace API.Common
{
public static class MemCachedHelper
{
private static readonly MemcachedClient memcachedClient; static MemCachedHelper()
{
//读取web.config中的memcached服务器配置信息
if (string.IsNullOrWhiteSpace(ConfigurationManager.AppSettings["memcachedServer"]))
{
throw new Exception("请在web.config的appsetting中配置memcached服务器信息!");
}
string[] servers = ConfigurationManager.AppSettings["memcachedServer"].Split(new char[','], StringSplitOptions.RemoveEmptyEntries); //初始化池
SockIOPool pool = SockIOPool.GetInstance();
pool.SetServers(servers);
pool.InitConnections = 3;
pool.MinConnections = 3;
pool.MaxConnections = 1000;
pool.SocketConnectTimeout = 1000;
pool.SocketTimeout = 3000;
pool.MaintenanceSleep = 30;
pool.Failover = true;
pool.Nagle = false;
pool.Initialize();
memcachedClient = new MemcachedClient();
memcachedClient.EnableCompression = false;
} /// <summary>
/// 根据key获取value
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
public static object Get(string key)
{
return memcachedClient.Get(key);
}
public static T Get<T>(string key)
{
return (T)memcachedClient.Get(key);
} public static Hashtable Get(string[] key)
{
return memcachedClient.GetMultiple(key);
} public static bool Set(string key, object objObject, DateTime exp)
{
return memcachedClient.Set(key, objObject, exp);
}
public static bool Set(string key, object value)
{
return memcachedClient.Set(key, value);
}
public static bool Set(string key, object value, int minute)
{
return memcachedClient.Set(key, value, DateTime.Now.AddMinutes(minute));
} public static void Set<T>(string key, T values)
{
memcachedClient.EnableCompression = false;
memcachedClient.Set(key, values);
}
public static void Set<T>(string key, T values, DateTime expiry)
{
try
{
memcachedClient.EnableCompression = false;
memcachedClient.Set(key, values, expiry);
}
catch
{
}
} public static Hashtable Stats()
{
return memcachedClient.Stats();
} public static void Remove(string key)
{
memcachedClient.Delete(key);
} public static void RemoveAllCache()
{
memcachedClient.FlushAll();
} public static bool ContainsKey(string key)
{
return memcachedClient.KeyExists(key);
}
public static bool IsKeyExists(string key)
{
try
{
return memcachedClient.KeyExists(key);
}
catch
{
return false;
}
}
public static bool Replace<T>(string key, T values, DateTime expiry)
{
return memcachedClient.Replace(key, values, expiry);
}
public static bool Replace<T>(string key, T values)
{
return memcachedClient.Replace(key, values);
}
}
}

三使用

using API.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using C = API.Common;
using B = API.BLL;
using M = API.Model;
namespace API.BPJ.Controllers.Product
{
/// <summary>
/// 商品控制器
/// </summary>
public class ProductController : ApiController
{ /// <summary>
/// 根据经销商编号得到分类列表
/// </summary>
/// <param name="UserId"></param>
/// <param name="ZY"></param>
/// <param name="Sign"></param>
/// <param name="Ts"></param>
/// <returns></returns>
[HttpGet]
public CommonResult GetProductCategoryList(string UserId, string ZY, string Sign, string Ts)
{
CommonResult apiResult = new CommonResult();
//检查请求 签名和时间戳不符合即返回
if (!C.ComHelper.CheckRequest(Sign, Ts, out apiResult.Result, out apiResult.Message))
{
return apiResult;
}
string cachekey = "CategoryList" + UserId + ZY;
if (!C.MemCachedHelper.IsKeyExists(cachekey))
{
//如果没有缓存从数据库读取 默认设置缓存为1天时间
List<M.ProductCategory> list = new B.Product().GetProductCategoryList(UserId, ZY);
C.MemCachedHelper.Set<List<M.ProductCategory>>(cachekey, list, DateTime.Now.AddDays(1));
apiResult.Data = list; }
else
{
apiResult.Data = C.MemCachedHelper.Get<List<M.ProductCategory>>(cachekey);
} if (apiResult.Data != null)
{
apiResult.Result = "1";
apiResult.Message = "加载成功!"; }
else
{
apiResult.Result = "2";
apiResult.Message = "加载失败!";
}
return apiResult;
} } }

四注意问题

1、model需要Serializable 否则不能set

2、序列化后的json对象,每个属性都带有k__BackingField后缀,加入[DataContract]  [DataMember]就就可以了

namespace API.Model
{ [Serializable]
[DataContract]
public class ProductCategory
{
[DataMember]
public int CId { get; set; }
[DataMember]
public string CName { get; set; }
[DataMember]
public string CCode { get; set; }
[DataMember]
public string PCode { get; set; }
[DataMember]
public string Thumbnail { get; set; }
[DataMember]
public string Picture { get; set; } }
}

localhost:6103/api/Product/GetProductCategoryList?UserId=1&ZY=1&Sign=&Ts=

{
"Result": "1",
"Message": "加载成功!",
"Data": [
{
"CId": 268,
"CName": "个护化妆",
"CCode": "003",
"PCode": "0",
"Thumbnail": "http://images.bpj.com/ProductCategory/201603/gehuhuazhang.jpg",
"Picture": "http://images.bpj.com/ProductCategory/201603/gehuhuazhang.jpg"
},
{
"CId": 269,
"CName": "个护健康",
"CCode": "004",
"PCode": "0",
"Thumbnail": "http://images.bpj.com/ProductCategory/201603/gehujiankang.jpg",
"Picture": "http://images.bpj.com/ProductCategory/201603/gehujiankang.jpg"
},
{
"CId": 338,
"CName": "家居用品",
"CCode": "005",
"PCode": "0",
"Thumbnail": "http://images.bpj.com/ProductCategory/201603/jiajuyongpin.jpg",
"Picture": "http://images.bpj.com/ProductCategory/201603/jiajuyongpin.jpg"
},
{
"CId": 499,
"CName": "母婴玩具",
"CCode": "007",
"PCode": "0",
"Thumbnail": "http://images.bpj.com/ProductCategory/201603/muyingwanju.jpg",
"Picture": "http://images.bpj.com/ProductCategory/201603/muyingwanju.jpg"
}
]
}

Memcached+WebApi记录的更多相关文章

  1. centos7下安装php+memcached简单记录

    1)centos7下安装php 需要再添加一个yum源来安装php-fpm,可以使用webtatic(这个yum源对国内网络来说恐怕有些慢,当然你也可以选择其它的yum源) [root@nextclo ...

  2. Memcached简介

    在Web服务开发中,服务端缓存是服务实现中所常常采用的一种提高服务性能的方法.其通过记录某部分计算结果来尝试避免再次执行得到该结果所需要的复杂计算,从而提高了服务的运行效率. 除了能够提高服务的运行效 ...

  3. memcached 常用命令及使用说明

    1.启动Memcache 常用参数 -p <num> 设置TCP端口号(默认设置为: ) -U <num> UDP监听端口(默认: , 时关闭) -l <ip_addr& ...

  4. Memcached常用命令及使用说明(转)

    一.存储命令 存储命令的格式: 1 2 <command name> <key> <flags> <exptime> <bytes> < ...

  5. Windows和Linux环境下Memcached安装与配置(转)

    一.memcached安装配置 windows平台安装 1.memcached-1.2.6-win32-bin.zip下载地址: http://code.jellycan.com/memcached/ ...

  6. Memcached常用命令及使用说明

    一.存储命令 存储命令的格式: 1 2 <command name> <key> <flags> <exptime> <bytes> < ...

  7. Memcached总结三:Memcached常用命令及使用说明

    一.存储命令 存储命令的格式: 1 2 <command name> <key> <flags> <exptime> <bytes> < ...

  8. springMVC整合memcached,以注解形式使用

    睡不着,深夜写点博客.闲下来有一个月了,心里多少有点…… 在北京找工作一再受阻,这个时间点也不好找 再接再厉 之前没有用过memcached,没有什么实战经验,看了一些关于memcached的博客,写 ...

  9. 转:Memcached常用命令及使用说明

    一.存储命令 存储命令的格式: 1 2 <command name> <key> <flags> <exptime> <bytes> < ...

随机推荐

  1. [视频]K8飞刀 ms15022 office漏洞演示动画

    [视频]K8飞刀 ms15022 office漏洞演示动画 https://pan.baidu.com/s/1eQnV8qQ

  2. 插入排序的Java代码实现

    插入排序也是一类非常常见的排序方法,它主要包含直接插入排序,Shell排序和折半插入排序等几种常见的排序方法. 1.直接插入排序 直接插入排序的思路非常简单:依次将待排序的数据元素按其关键字值的大小插 ...

  3. tensorflow进阶篇-4(损失函数2)

    Hinge损失函数主要用来评估支持向量机算法,但有时也用来评估神经网络算法.下面的示例中是计算两个目标类(-1,1)之间的损失.下面的代码中,使用目标值1,所以预测值离1越近,损失函数值越小: # U ...

  4. JavaScript -- Enumerator

    -----022-Enumerator.html----- <!DOCTYPE html> <html> <head> <meta http-equiv=&q ...

  5. 文件句柄FileDescriptor的hanle/fd两个字段分析

    对于FileInputStream/FileOutputStream/RandomAccessFile,使用handle来表示底层的文件句柄 对于ServerSocket/Socket,使用fd来表示 ...

  6. spring boot实现ssm(1)功能

    前面完成了ssm的整合, 整个过程可以说很繁杂, 各种配置, 很容易让人晕掉. 这里使用spring boot 的方式来实现ssm(1)中的功能. 一. 建项目 1. 使用 idea 来创建 spri ...

  7. java web 机试

    经过近一个月的学习,我们的java web已经学习完了. 这是我们这次的机试题. 一:题目 请利用MVC设计模式,并使用JSP.Servlet.JSTL和JQuery等技术实现动态条件的分页显示查询. ...

  8. JS作用域,作用域,作用链详解

    前言   通过本文,你大概明白作用域,作用域链是什么,毕竟这也算JS中的基本概念. 一.作用域(scope) 什么是作用域,你可以理解为你所声明变量的可用范围,我在某个范围内申明了一个变量,且这个变量 ...

  9. SSL编程(3).NET实现SSL服务端

      准备开发用数字证书 一般学习和开发调试场合,不会随便使用正式的SSL服务器证书的私钥.由于服务器验证对于SSL来说是必须的,SSL服务器端必须有拥有一个服务器 证书,即能够访问到证书的私钥.对于要 ...

  10. ASP的不足与ASP.NET和ASP的区别

    ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强.ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型.面向结构的编程语言,而非面向对象,这就明显 ...