云数据库 Memcache 版

    xiaoxiao2021-03-25  33

    客户端连接实例

    C#/.NET: EnyimMemcached

    using System.Net; using Enyim.Caching; using Enyim.Caching.Configuration; using Enyim.Caching.Memcached; namespace OCS.Memcached { public sealed class MemCached { private static MemcachedClient MemClient; static readonly object padlock = new object(); //线程安全的单例模式 public static MemcachedClient getInstance() { if (MemClient == null) { lock (padlock) { if (MemClient == null) { MemClientInit(); } } } return MemClient; } static void MemClientInit() { //初始化缓存 MemcachedClientConfiguration memConfig = new MemcachedClientConfiguration(); IPAddress newaddress = IPAddress.Parse(Dns.GetHostEntry ("your_ocs_host").AddressList[0].ToString());//your_ocs_host替换为OCS内网地址 IPEndPoint ipEndPoint = new IPEndPoint(newaddress, 11211); // 配置文件 - ip memConfig.Servers.Add(ipEndPoint); // 配置文件 - 协议 memConfig.Protocol = MemcachedProtocol.Binary; // 配置文件-权限 memConfig.Authentication.Type = typeof(PlainTextAuthenticator); memConfig.Authentication.Parameters["zone"] = ""; memConfig.Authentication.Parameters["userName"] = "username"; memConfig.Authentication.Parameters["password"] = "password"; //下面请根据实例的最大连接数进行设置 memConfig.SocketPool.MinPoolSize = 5; memConfig.SocketPool.MaxPoolSize = 200; MemClient=new MemcachedClient(memConfig); } } }

    调用代码:

    MemcachedClient MemClient = MemCached.getInstance();
    转载请注明原文地址: https://ju.6miu.com/read-26654.html

    最新回复(0)