• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

利用ASP.NET的Timer来实现的访问统计,感觉比较适合高访问量的网站 ...

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

首先是因为晚上我要把我的博客的访问统计加上去的.起初的想法很简单 随便在 Session_Start 里面,自动往数据表里加 1

但考虑到如果访问人数很高的话是不是每次都很频烦的访问(还好我的访问量并不高).

后来想到在Application_Start的时候存数据到 缓存里,Application_End 存进数据表不就得了,.貌似这个想法不错.但有一个问题,就是不可预测的因素,什么服务突然怎么怎么样啦.所以现在我的做法是,把数据 保存在 缓存里 然后利用timer间隔一定时间往数据表里写.

static Timer timer=new Timer(100 * 60*30);

    void Application_Start(object sender, EventArgs e)
    {
        /---省略---/

        string dtc = "1";
        if (dr.Read())
        {
            dtc = dr["vr_count"].ToString();
        }
        dr.Close();

        Application["total"] = dtc;
     
        timer.Elapsed += new ElapsedEventHandler(timer_Elapsed);
        timer.Interval = 100 * 60 * 30;
        timer.Enabled = true;
    }

void timer_Elapsed(object sender, ElapsedEventArgs e)
    {

        int total = Application["total"] != null ? Convert.ToInt32(Application["total"].ToString()) : 0;
        if (total != 0)
        {
            /--数据更新--/            
        }
    }

 

void Session_Start(object sender, EventArgs e)
    {
    

        if (Application["total"] == null)
        {
            int total=1;
            Application.Lock();
            Application["total"] = total;
            Application.UnLock();
        }
        else
        {
            int total = Application["total"] != null ? Convert.ToInt32(Application["total"].ToString()) : 0;
            Application.Lock();
            total++;
            Application["total"] = total;
            Application.UnLock();
        }

    }

 

 

很简单,,但效果已经达到了,,不知道这样做有没有什么不足,,望指教...
http://dubox.cn/content-44.aspx


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
asp.net正则表达式学习例子发布时间:2022-07-10
下一篇:
asp.net图片上传(最大限度避免重名覆盖)发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap