• 安全的Hashtable


    还有另外一种保存Cache方式是,使用Hashtable等来保存,值的一说的是这种Cache也是全局 ,而且是不可过期的 ,我想这是与 HttpRuntime.Cache的一个区别吧.至于安全性能方面我还没有去验证.Hashtable保存方式比较特别,就是NEW的时候要使用同步关健字

      

    代码
    public class SafeHashtable
    {
    private static Hashtable parmCache = Hashtable.Synchronized(new Hashtable());
    public static void CacheParameters(string cacheKey, string cmdParms)
    {
    parmCache[cacheKey]
    = cmdParms;
    }
    public static string GetCachedParameters(string cacheKey)
    {
    return (string)parmCache[cacheKey];
    }
    }

    作者:Olar Tan
    出处:http://www.cnblogs.com/olartan
    ♪:没有做不到的 只有偷懒而错过的 ♪

  • 相关阅读:
    查看tls指纹
    并行流
    方法引入2
    方法引入
    Optional.ofNullable
    stream.filter
    stream.skip limit
    反射
    Optional orElseGet
    nginx 预压缩(gzip)
  • 原文地址:https://www.cnblogs.com/olartan/p/1879559.html
Copyright © 2020-2023  润新知