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')

  • 相关阅读:
    hbase-0.20.6/bin/hbase-daemon.sh: Permission denied
    FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask
    微服务:Eureka配置集群环境
    java.net.NoRouteToHostException: No route to host
    原生MapReduce开发样例
    Spring mvc服务端消息推送(SSE技术)
    Spring AOP的实现记录操作日志
    maven多模块项目聚合
    (转载)JAVA中八种基本数据类型的默认值
    mysql性能监控工具
  • 原文地址:https://www.cnblogs.com/antyi/p/2631866.html
Copyright © 2011-2022 走看看