zoukankan      html  css  js  c++  java
  • winfrom中使用cache

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Web;
    using System.Web.Caching;
    using System.Threading;


    namespace NPao.Tools.EntityDesign
    {
        
    public class CacheConfig
        
    {
            
    private static HttpRuntime _httpRuntime;

            
    public static Cache Cache
            
    {
                
    get
                
    {
                    EnsureHttpRuntime();
                    
    return HttpRuntime.Cache;
                }

            }


            
    private static void EnsureHttpRuntime()
            
    {
                
    if (null == _httpRuntime)
                
    {
                    
    try
                    
    {
                        Monitor.Enter(
    typeof(CacheConfig));
                        
    if (null == _httpRuntime)
                        
    {
                            
    // Create an Http Content to give us access to the cache.
                            _httpRuntime = new HttpRuntime();
                        }

                    }

                    
    finally
                    
    {
                        Monitor.Exit(
    typeof(CacheConfig));
                    }

                }

            }


        }

    }


    使用:
    string s = CacheConfig.Cache["txt"] as string;
                if (!string.IsNullOrEmpty(s))
                    MessageBox.Show(s);
                else
                    CacheConfig.Cache.Insert("txt",txtConnStr.Text);

  • 相关阅读:
    springcloud将多个微服务的swagger文档整合到同一个地址访问
    git 强制回滚到某个commit版本
    常用几个 mvn 命令
    @Resource @Autowired
    我们需要深度沟通
    python 中文乱码解决方案
    同一台电脑使用多个ssh私钥配置不同的github账号
    pyinstaller 打包 sentry_sdk 出现 ModuleNotFoundError 的解决方法
    Linux系统下强制踢掉登录用户
    zsh Ctrl+U 从当前位置删除到行首
  • 原文地址:https://www.cnblogs.com/xinzhyu/p/1139413.html
Copyright © 2011-2022 走看看