您当前的位置: 首页 > 网站编程 > JSP教程 > JSP高访问量下的计数程序

JSP高访问量下的计数程序

作者:guanchaofeng 来源:本站整理 发布时间: 2009-10-31 10:27 点击:
有时要为每一篇文章统计其点击次数,如果每一次浏览都要更新一次库的话,那性能在访问量很大的情况下,服务器的压力就会很大了,比较好一点的方法就是先将要更新的数据缓存起来,然后每隔一段时间再利用数据库的批量处理,批量更新库。源码如下: CountBean.

JSP高访问量下的计数程序

  有时要为每一篇文章统计其点击次数,如果每一次浏览都要更新一次库的话,那性能在访问量很大的情况下,服务器的压力就会很大了,比较好一点的方法就是先将要更新的数据缓存起来,然后每隔一段时间再利用数据库的批量处理,批量更新库。源码如下:
  
  CountBean.java
  
  /*
  
  *CountData.java
  
  *
  
  *Createdon2006年10月18日,下午4:44
  
  *
  
  *Tochangethistemplate,chooseTools|Optionsandlocatethetemplateunder
  
  *theSourceCreationandManagementnode.Right-clickthetemplateandchoose
  
  *Open.YoucanthenmakechangestothetemplateintheSourceEditor.
  
  */
  
  packagecom.tot.count;
  
  /**
  
  *
  
  *@author
  
  */
  
  publicclassCountBean{
  
  privateStringcountType;
  
  intcountId;
  
  /**CreatesanewinstanceofCountData*/
  
  publicCountBean(){
  
  }
  
  publicvoidsetCountType(StringcountTypes){
  
  this.countType=countTypes;
  
  }
  
  publicvoidsetCountId(intcountIds){
  
  this.countId=countIds;
  
  }
  
  publicStringgetCountType(){
  
  returncountType;
  
  }
  
  publicintgetCountId(){
  
  returncountId;
  
  }
  
  }
  
  CountCache.java
  
  /*
  
  *CountCache.java
  
  *
  
  *Createdon2006年10月18日,下午5:01
  
  *
  
  *Tochangethistemplate,chooseTools|Optionsandlocatethetemplateunder
  
  *theSourceCreationandManagementnode.Right-clickthetemplateandchoose
  
  *Open.YoucanthenmakechangestothetemplateintheSourceEditor.
  
  */
  
  packagecom.tot.count;
  
  importjava.util.*;
  
  /**
  
  *
  
  *@author
  
  */
  
  publicclassCountCache{
  
  publicstaticLinkedListlist=newLinkedList();
  
  /**CreatesanewinstanceofCountCache*/
  
  publicCountCache(){
  
  }
  
  publicstaticvoidadd(CountBeancb){
  
  if(cb!=null){
  
  list.add(cb);
  
  }
  
  }
  
  }
  
  CountControl.java
  
  /*
  
  *CountThread.java
  
  *
  
  *Createdon2006年10月18日,下午4:57
  
  *
  
  *Tochangethistemplate,chooseTools|Optionsandlocatethetemplateunder
  
  *theSourceCreationandManagementnode.Right-clickthetemplateandchoose
  
  *Open.YoucanthenmakechangestothetemplateintheSourceEditor.
  
  */
  
  packagecom.tot.count;
  
  importtot.db.DBUtils;
  
  importjava.sql.*;
  
  /**
  
  *
  
  *@author
  
  */
  
  publicclassCountControl{
  
  privatestaticlonglastExecuteTime=0;//上次更新时间
  
  privatestaticlongexecuteSep=60000;//定义更新间隔时间,单位毫秒
  
  /**CreatesanewinstanceofCountThread*/
  
  publicCountControl(){
  
  }
  
  publicsynchronizedvoidexecuteUpdate(){
  
  Connectionconn=null;
  
  PreparedStatementps=null;
  
  try{
  
  conn=DBUtils.getConnection();
  
  conn.setAutoCommit(false);
  
  ps=conn.prepareStatement("updatet_newssethits=hits+1whereid=?");
  
  for(inti=0;i<CountCache.list.size();i++){
  
  CountBeancb=(CountBean)CountCache.list.getFirst();
  
  CountCache.list.removeFirst();
  
  ps.setInt(1,cb.getCountId());
  
  ps.executeUpdate();⑴
  
  //ps.addBatch();⑵
  
  }
  
  //int[]counts=ps.executeBatch();⑶
  
  conn.commit();
  
  }catch(Exceptione){
  
  e.printStackTrace();
  
  }finally{
  
  try{
  
  if(ps!=null){
  
  ps.clearParameters();
  
  ps.close();
  
  ps=null;
  
  }
  
  }catch(SQLExceptione){}
  
  DBUtils.closeConnection(conn);
  
  }
  
  }
  
  publiclonggetLast(){
  
  returnlastExecuteTime;
  
  }
  
  publicvoidrun(){
  
  longnow=System.currentTimeMillis();
  
  if((now-lastExecuteTime)>executeSep){
  
  //System.out.print("lastExecuteTime:"+lastExecuteTime);
  
  //System.out.print("now:"+now+"\n");
  
  //System.out.print("sep="+(now-lastExecuteTime)+"\n");
  
  lastExecuteTime=now;
  
  executeUpdate();
  
  }
  
  else{
  
  //System.out.print("waitfor"+(now-lastExecuteTime)+"seconds:"+"\n");
  
  }
  
  }
  
  }
  
  //注:如果你的数据库驱动支持批处理,那么可以将⑵,⑶标记的代码前的注释去掉,同时在代码⑴前加上注释
  
  类写好了,下面是在JSP中如下调用。
  
  <%
  
  CountBeancb=newCountBean();
  
  cb.setCountId(Integer.parseInt(request.getParameter("cid")));
  
  CountCache.add(cb);
  
  out.print(CountCache.list.size()+"<br>");
  
  CountControlc=newCountControl();
  
  c.run();
  
  out.print(CountCache.list.size()+"<br>");
  
  %>

分享到:
本文"JSP高访问量下的计数程序"由远航站长收集整理而来,仅供大家学习与参考使用。更多网站制作教程尽在远航站长站。
顶一下
(0)
0%
踩一下
(0)
0%
[点击 次] [返回上一页] [打印]
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 密码: 验证码:
关于本站 - 联系我们 - 网站声明 - 友情连接- 网站地图 - 站点地图 - 返回顶部
Copyright © 2007-2013 www.yhzhan.com(远航站长). All Rights Reserved .
远航站长:为中小站长提供最佳的学习与交流平台,提供网页制作与网站编程等各类网站制作教程.
官方QQ:445490277 网站群:26680406 网站备案号:豫ICP备07500620号-4