zoukankan      html  css  js  c++  java
  • 缓存依赖注意

    1.表名必须要加dbo.,否则会不缓存每次都会读数据库。

    2.如下语句要写在定义Dataset的前面,否则会更新了数据表,缓存还是没失效,显示的旧数据。

    System.Web.Caching.SqlCacheDependency sqlcache = new System.Web.Caching.SqlCacheDependency(commad);

    protected void Page_Load(object sender, EventArgs e)
        {
            StringBuilder strSql = new StringBuilder();
            //strSql.Append("SELECT [id] ,[value] FROM [dbo].[Test]");


            strSql.Append("select ");

            strSql.Append(" Name,LoginID,PassWord,status,MobileNo,ItvNo ");
            strSql.Append(" FROM dbo.Member ");


            this.data.DataSource = GetMember(strSql.ToString());// ExecuteAndCache(strSql.ToString());//
            this.data.DataBind();
        }


        private DataTable GetMember(string strSql)
        {

            //string key = strSql;// "T1";

            if (HttpRuntime.Cache[strSql] == null)
            {
             
                using (SqlConnection sqlconn = new SqlConnection(SqlHelp.conn))
                {

                    using (SqlCommand commad = new SqlCommand())
                    {
                        System.Web.Caching.SqlCacheDependency sqlcache = new System.Web.Caching.SqlCacheDependency(commad);
                        commad.CommandType = CommandType.Text;
                        commad.CommandText = strSql;                   
                        commad.Connection = sqlconn;
                       

                        DataSet ds = new DataSet();                 

                        new SqlDataAdapter(commad).Fill(ds);
                       
                        HttpRuntime.Cache.Insert(strSql, ds, sqlcache);//添加到缓存中
                    }

                }


            }

            DataSet tds = HttpRuntime.Cache[strSql] as DataSet;
            if (tds != null)
                return tds.Tables[0];
            else
                return null;
        }

    alter database [Test] set enable_broker

    select databasepropertyex('[Test]','IsBrokerEnabled')

  • 相关阅读:
    python解压缩rar,zip文件的正确姿势
    tensorflow1.x及tensorflow2.x不同版本实现验证码识别
    qt5.6.3下使用firebird
    Python3.6下的Requests登录及利用Cookies登录
    c++实现全密码生成
    android中利用HttpURLConnection进行Get、Post和Session读取页面。
    Freebsd10.3 Nginx多版本PHP
    Freebsd10.3(FreeBSD11 Beta1)使用手记
    Eclipse导入的User Libarary
    MySQL zip版本安装
  • 原文地址:https://www.cnblogs.com/antyi/p/2631866.html
Copyright © 2011-2022 走看看