分享
 
 
 

JSP高访问量下的计数程序

王朝java/jsp·作者佚名  2008-05-30
窄屏简体版  字體: |||超大  

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

CountBean.java

/*

* CountData.java

*

* Created on 2006年10月18日, 下午4:44

*

* To change this template, choose Tools | Options and locate the template under

* the Source Creation and Management node. Right-click the template and choose

* Open. You can then make changes to the template in the Source Editor.

*/

package com.tot.count;

/**

*

* @author http://www.tot.name

*/

public class CountBean {

private String countType;

int countId;

/** Creates a new instance of CountData */

public CountBean() {}

public void setCountType(String countTypes){

this.countType=countTypes;

}

public void setCountId(int countIds){

this.countId=countIds;

}

public String getCountType(){

return countType;

}

public int getCountId(){

return countId;

}

}

CountCache.java

/*

* CountCache.java

*

* Created on 2006年10月18日, 下午5:01

*

* To change this template, choose Tools | Options and locate the template under

* the Source Creation and Management node. Right-click the template and choose

* Open. You can then make changes to the template in the Source Editor.

*/

package com.tot.count;

import java.util.*;

/**

*

* @author http://www.tot.name

*/

public class CountCache {

public static LinkedList list=new LinkedList();

/** Creates a new instance of CountCache */

public CountCache() {}

public static void add(CountBean cb){

if(cb!=null){

list.add(cb);

}

}

}

CountControl.java

/*

* CountThread.java

*

* Created on 2006年10月18日, 下午4:57

*

* To change this template, choose Tools | Options and locate the template under

* the Source Creation and Management node. Right-click the template and choose

* Open. You can then make changes to the template in the Source Editor.

*/

package com.tot.count;

import tot.db.DBUtils;

import java.sql.*;

/**

*

* @author http://www.tot.name

*/

public class CountControl{

private static long lastExecuteTime=0;//上次更新时间

private static long executeSep=60000;//定义更新间隔时间,单位毫秒

/** Creates a new instance of CountThread */

public CountControl() {}

public synchronized void executeUpdate(){

Connection conn=null;

PreparedStatement ps=null;

try{

conn = DBUtils.getConnection();

conn.setAutoCommit(false);

ps=conn.prepareStatement("update t_news set hits=hits+1 where id=?");

for(int i=0;i<CountCache.list.size();i++){

CountBean cb=(CountBean)CountCache.list.getFirst();

CountCache.list.removeFirst();

ps.setInt(1, cb.getCountId());

ps.executeUpdate();⑴

//ps.addBatch();⑵

}

//int [] counts = ps.executeBatch();⑶

conn.commit();

}catch(Exception e){

e.printStackTrace();

} finally{

try{

if(ps!=null) {

ps.clearParameters();

ps.close();

ps=null;

}

}catch(SQLException e){}

DBUtils.closeConnection(conn);

}

}

public long getLast(){

return lastExecuteTime;

}

public void run(){

long now = 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("wait for "+(now - lastExecuteTime)+" seconds:"+"\n");

}

}

}

//注:如果你的数据库驱动支持批处理,那么可以将⑵,⑶标记的代码前的注释去掉,同时在代码⑴前加上注释

类写好了,下面是在JSP中如下调用。

<%

CountBean cb=new CountBean();

cb.setCountId(Integer.parseInt(request.getParameter("cid")));

CountCache.add(cb);

out.print(CountCache.list.size()+"<br>");

CountControl c=new CountControl();

c.run();

out.print(CountCache.list.size()+"<br>");

%>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有