- 浏览: 290153 次
- 性别:
- 来自: 兰州
文章分类
- 全部博客 (116)
- 给网友答疑 (1)
- J2EE (16)
- DesignPattern (14)
- OtherArchive (5)
- lucene and compass (1)
- JasperReport (2)
- FusionCharts (2)
- Classical algorithm (2)
- JS (5)
- ZK Ajax (1)
- ubuntu-linux (4)
- Weka (0)
- IDE Config (6)
- JAVA 底层 (3)
- C\C++ (4)
- Android (15)
- 项目展示 (1)
- 娱乐生活 (16)
- 电驴资源 (1)
- 网络转载 (1)
- 程序员 毛病 (1)
- Android,开发日志 (2)
- java (1)
- openGL es (2)
- MAC (1)
最新评论
-
洋葱pp奥特曼:
求大神再发一次资源,万分感激!!小弟邮箱:173992660@ ...
使用JQuery-Week-Calendar做日程 -
xbliu564:
请问版本号
fusionchart 破解文件SWF -
xue_lang:
看了半天,有点坑爹的赶脚,哎
状态模式(State) -
teacup_madman:
我只能说。这个程序可以去掉的地方太多了。这个真的是State模 ...
状态模式(State) -
冬日的阳光:
TrafficLight这个类的change方法可以改一下,如 ...
状态模式(State)
写点程序就要认真点,为什么呢?会有效率问题的!引例:
今天电力公司的满意度测评系统开始正式的运行测评了,然而有一件很溴的事情让人难看,前面填写一份问卷不到10秒钟的时间,现在呢?有多少时间呢?2分钟,两天以后5分钟,三天以后10分钟,...N天以后40分钟,还伴随着有什么情况呢?
tomcat6.0 cup 100% 内存:512
这真是让人想都不敢想的事情,居然发生呢?居然做了一下的假设:
1。本来以为是Tomcat运行时间很长了,不稳定的原因;
2。本系统装载小型机的虚拟机上,并且虚拟机有异常,怀疑是不是系统的问题;
3。使用的连接池+mysql,是不是mysql连接数堵塞的原因。
。。。。。。。。。。
种种的假设都有了,就是没有检查源代码。
很致命的源代码见如下:
public String add() { String result = "tip"; if (StringUtils.isEmpty(indexItemids)) { setOperationMessage("你交了一张白卷,请重新填写问卷!<br><a href='/paper/paperItem!queryAll.action'>重新填写</a>"); return "tip"; } survey = surveyManager.querySurvey(survey.getSurveyID()); customerType = customerTypeManager.queryCustomerType(customerType.getCustomerTypeID()); surveyArea = surveyAreaManager.querySurveyArea(surveyArea.getSurveyAreaID()); String[] itemids = indexItemids.split(":"); String[] scores = itemScores.split(":"); user = randomGenerateMethod(); UserInfo uInfo = user.getUserInfo(); // 添加调查结果 SurveyResult surveyResult = surveyResultSaveOrUpdate(user); // 添加调查结果项 surveyResultItemSaveOrUpdate(surveyResult, itemids, scores); // 添加调查结果致地区客户类别调查结果 customerTypeResultSaveOrUpdate(surveyResult, itemids, scores, uInfo); // 添加建议项 List<Suggest> haveSuggests = new ArrayList<Suggest>(); if (null != suggestids) { for (int id : suggestids) { Suggest suggest = suggestManager.querySuggest(id); haveSuggests.add(suggest); } } user.getUserInfo().setSuggests(haveSuggests); user.setAccountlocked(true); user.getUserInfo().setCustomerName(userInfo.getCustomerName()); user.getUserInfo().setCustomerUnit(userInfo.getCustomerUnit()); user.getUserInfo().setAddress(userInfo.getAddress()); user.getUserInfo().setPhone(userInfo.getPhone()); user.getUserInfo().setCustomerAdvice(userInfo.getCustomerAdvice()); user.getUserInfo().setTradeClass(userInfo.getTradeClass()); user.getUserInfo().setAge(userInfo.getAge()); user.getUserInfo().setSex(userInfo.getSex()); user.getUserInfo().setOccupationClass(userInfo.getOccupationClass()); userManager.modifyUser(user); setOperationMessage("您的问卷信息已经成功提交,感谢您的参与,再见!"); return result; } private SurveyResult surveyResultSaveOrUpdate(User user) { SurveyResult surveyResult = surveyResultManager.querySurveyResult(user.getUserInfo().getSurvey(), user); if (surveyResult == null) { surveyResult = new SurveyResult(); surveyResult.setSurvey(user.getUserInfo().getSurvey()); surveyResult.setTime(new Date()); surveyResult.setUser(user); surveyResultManager.addSurveyResult(surveyResult); } else { surveyResult.setSurvey(user.getUserInfo().getSurvey()); surveyResult.setTime(new Date()); surveyResult.setUser(user); surveyResultManager.modifySurveyResult(surveyResult); } return surveyResult; } private void surveyResultItemSaveOrUpdate(SurveyResult surveyResult, String[] itemids, String[] scores) { for (int i = 0; i < itemids.length; i++) { SurveyResultItem surveyResultItem = null; int indexItemID = Integer.parseInt(itemids[i]); double itemScore = Double.parseDouble(scores[i]); indexItem = indexItemManager.queryIndexItem(indexItemID); if (null == surveyResultItemManager.querySurveyResultItem(indexItem, surveyResult)) { surveyResultItem = new SurveyResultItem(); surveyResultItem.setIndexItem(indexItem); surveyResultItem.setSurveyResult(surveyResult); surveyResultItem.setItemScore(itemScore); surveyResultItemManager.addSurveyResultItem(surveyResultItem); } else { surveyResultItem = surveyResultItemManager.querySurveyResultItem(indexItem, surveyResult); surveyResultItem.setIndexItem(indexItem); surveyResultItem.setSurveyResult(surveyResult); surveyResultItem.setItemScore(itemScore); surveyResultItemManager.modifySurveyResultItem(surveyResultItem); } } } private void customerTypeResultSaveOrUpdate(SurveyResult surveyResult, String[] itemids, String[] scores, UserInfo uInfo) { for (int i = 0; i < itemids.length; i++) { int indexItemID = Integer.parseInt(itemids[i]); indexItem = indexItemManager.queryIndexItem(indexItemID); double itemScore = Double.parseDouble(scores[i]); customerTypeResult = customerTypeResultDao.getCustomerTypeResultByIndexItemAndCustomerType(indexItem, uInfo.getSurveyArea(), uInfo.getSurvey(), uInfo.getCustomerType()); if (customerTypeResult == null) { customerTypeResult = new CustomerTypeResult(); customerTypeResult.setIndexItem(indexItem); customerTypeResult.setItemScore(itemScore); customerTypeResult.setSurvey(uInfo.getSurvey()); customerTypeResult.setSurveyArea(uInfo.getSurveyArea()); customerTypeResult.setCustomerType(uInfo.getCustomerType()); customerTypeResultDao.addCustomerTypeResult(customerTypeResult); } else { customerTypeResult.setIndexItem(indexItem); customerTypeResult.setItemScore(itemScore); customerTypeResult.setSurvey(uInfo.getSurvey()); customerTypeResult.setSurveyArea(uInfo.getSurveyArea()); customerTypeResult.setCustomerType(uInfo.getCustomerType()); customerTypeResultDao.modifyCustomerTypeResult(customerTypeResult); } } }
看见这点代码本来角色没有什么,因为都是固定的,怎么会有这样大的效率差别呢? 再来看看一下的代码:
@Override public SurveyResult querySurveyResult(Survey survey, User user) { SurveyResult result = null; for (SurveyResult surveyResult : queryAllSurveyResult().getResultlist()) { if (user.getUserID() == surveyResult.getUser().getUserID()) { if (survey.getSurveyID() == surveyResult.getSurvey().getSurveyID()) { result = surveyResultDao.querySurveyResult(surveyResult.getSurveyResultID()); } } } return result; }
这个代码会不会哟效率的问题呢? 再来看看一下的代码:
@Override public SurveyResult querySurveyResult(Survey survey, User user) { SurveyResult result = null; StringBuffer wherejpql = new StringBuffer(" o.survey.surveyID=?1 and o.user.userID=?2 "); Integer[] params = new Integer[] { survey.getSurveyID(), user.getUserID() }; List<SurveyResult> temps = surveyResultDao.queryAllSurveyResult(-1, -1, wherejpql.toString(), params, null).getResultlist(); if (temps != null && temps.size() == 1) { result = temps.get(0); } return result; }
上面的代码的实行时间在1356条的时候是0:01:30,而这些代码的执行时间呢?0.002S效率在那呢?因为伴随业务逻辑循环在变大。
总结:
1。其实写循环没有什么,只是不要随业务逻辑的增加而循环量增大就可以了!
2。循环很好CUP,尤其是大循环。
发表评论
-
Spring MVC 和 Struts2 比较
2011-02-28 16:55 20311.struts2框架是类级别的拦截,每次来了请求就创建一个A ... -
写点程序的那些糗事(2)
2010-12-16 14:29 1206昨天给商学院做的专家品审系统正式的运行了,来的全部是一些大领导 ... -
Spring3 mvc 国际化时的一点注意
2010-12-13 09:37 1746Spring3 MVC 中:如果使用国际化的形式,如 ... -
MySQLIntegrityConstraintViolationException 解决办法
2010-10-19 16:51 18852使用JPA做映射: /** * 指标 * ... -
编程语言结构图
2010-09-23 12:22 1197编程语言就是这么个样子的!还要讨论什么是“排名战”么? ... -
在线试听(播放器)防止盗链下载实现讨论_障眼法实现
2010-09-06 12:10 6285《读者》电子出版平台有个附属项目,需求描述是这样的: ... -
JavaMail、Commons Email发送邮件 出现结果后到的文件是Base64的问题的解决办法
2010-08-19 23:09 5231今天折腾了一天,有个业务需要写个简单的邮件发送,但是测试了。从 ... -
使用jcaptcha 仿论坛tip 生成异步验证码
2010-08-18 03:55 2117首先看看效果图: 如上图,点击验证码可以异步的刷新 ... -
Eclipse 3.6 插件资源-持续更新ing-更新15次--欢迎有好用插件的朋友推荐
2010-08-17 11:00 7765欢迎有好用插件的朋友推荐! 注:没有提示说明安装的,直 ... -
Jpa 时间段间的查询问题解决办法
2010-05-27 22:13 22642最近在做法院的一个档案管理项目,一直做的的查询是基于compa ... -
dhtmlXTree 与后台交互数据
2009-11-06 14:44 1900今天要写一个获得dhtmlXTree 节点值的,大量的Id节点 ... -
Struts2 OGNL中的投影(过滤)与软件工程
2009-11-05 11:54 1896Struts2 OGNL中的投影(过滤) <s: ... -
Struts2 doubleSelect
2009-10-30 14:17 1542今天要用到一个二级联动,以前都是使用JavaScript编写, ... -
Struts2 的三种接受参数的方式
2009-10-28 16:59 20401、通过普通参数的getter and setter方式 ... -
JDBC CRUD操作的粗略封装DEMO
2009-10-15 12:19 4606暮然回首,看看jDBC的操作,原来很多的东西都忘记了, ...
相关推荐
仿糗事百科微信小程序 1. 实现顶部页签菜单左右滑动效果 2. 实现顶部页签菜单切换效果,页签菜单选中时字体加粗,同时对应的内容也跟着变化 3. 实现专享界面糗事列表设计,包括发布人头像、发布人昵称、发布的段子等...
【标题】:“高仿糗事百科程序源码 免费” 这个标题表明提供的是一个模仿知名网站“糗事百科”的程序源代码,并且是免费提供的。对于开发者来说,这是一个很好的学习和参考资源,特别是对想要了解如何构建类似社交...
uni-app实战仿糗事百科开发前端源码带素材 资源目录: 【20190705更新】【前端完整代码】仿糗事百科.rar 【前端完整代码】【更新至256课时】仿糗事百科.rar App截图.rar socket测试工具.rar 图标.rar 图片素材.rar
《基于DiscuzX的“糗事百科”程序详解》 在互联网上,各种社区和论坛程序层出不穷,其中Discuz! X系列因其强大的功能和灵活的扩展性,深受广大站长的喜爱。今天我们要探讨的是一个特别的应用——"discuz仿糗事百科...
python程序用于自动获取糗事百科的内容
1. 数据获取:通过API接口从服务器获取糗事数据,可以使用微信小程序的`wx.request`进行网络请求。 2. 页面布局:`wxml`文件负责结构,`wxss`文件负责样式。可以使用微信小程序提供的组件如`view`、`text`、`button`...
【标题】"仿糗事百科源码"是一个基于PHP和MYSQL数据库开发的网站源代码,其设计灵感来源于知名的网络社区“糗事百科”。这个源码是开发者为了创建类似功能的幽默分享平台而编写的,旨在提供一个用户可以分享、浏览和...
首先,"糗事百科"是一款广受欢迎的娱乐类应用程序,它以分享趣闻轶事为主,为用户提供轻松愉快的阅读体验。其源码的公开,为开发者提供了一个难得的学习平台,尤其是对于那些希望了解如何构建类似社交娱乐应用的...
源码通常是编程语言编写的程序代码,它包含了构建网站所有功能的核心逻辑。 描述中的“欢迎下载,已测试完整”意味着该源码已经过开发者的测试,确保没有重大错误或遗漏,用户可以安心下载并使用。完整的源码通常...
本项目“仿糗事百科.rar”旨在通过Hbuilding工具,实现小程序、H5应用以及移动端APP的同步开发,以满足不同平台用户的使用需求。下面,我们将详细探讨这一技术实现的各个方面。 首先,我们来了解一下Hbuilding。...
《高仿糗事百科项目源码》是一款基于Android平台的开源项目,旨在为开发者提供一个学习和参考的实例,帮助他们了解和掌握Android应用开发的相关技术。该项目模仿了知名的糗事百科网站,提供了类似的功能和用户体验,...
2013最新糗事百科源码|捧腹网源码|笑话类源码,yicms商业版内核,2套模板,含会员中心,完全开源,请放心使用。也是转来的,没有测试,自行测试,不喜欢的不要下,不存在骗分的说法。解压密码见注释
微信小程序 娱乐搞笑 笑话 (源代码+截图)微信小程序 娱乐搞笑 笑话 (源代码+截图)微信小程序 娱乐搞笑 笑话 (源代码+截图)微信小程序 娱乐搞笑 笑话 (源代码+截图)微信小程序 娱乐搞笑 笑话 (源代码+截图)...
《糗事百科Windows桌面客户端-纯文字版》是一款专为Windows操作系统设计的应用程序,它集成了糗事百科网站上的各种幽默、搞笑内容,为用户提供了一个便捷的本地阅读平台。这款客户端特别强调“纯文字版”,意味着它...
【标题】"2014最新仿糗事百科源码" 涉及的主要知识点是基于PHP语言的网站开发和设计,尤其是对于模仿已存在网站的界面和功能的实现。在2014年,这样的源码可能采用了当时流行的Web开发技术和框架,以创建一个类似于...
1. **网站架构**:仿糗事百科的后端可能采用微服务架构,以提高系统的可扩展性和灵活性。通常会包含用户服务、内容管理服务、评论服务等多个独立的服务模块。 2. **前端开发**:前端界面设计需要考虑到用户体验,...
亲测有效,不管是windows 还是Linux都...使用python 爬取糗事百科的段子,通过回车键控制,一次一个,同时可以把看过的内容保存到本地查看 具体实现可以参照 http://blog.csdn.net/qiqiyingse/article/details/60583129
该程序为仿新版的糗事百科客户端,数据是通过jsoup来抓取糗事百科网页版的,程序能正常运行,由于原客户端中有些功能模块的数据不能通过网页中抓取到,所有这类功能模块没有实现。程序sdk为android 4.0以上的版本,...
获取糗事百科段子程序,拥有UI交互界面 下载之后无需任何配置,可以直接运行 具体的程序请参考:http://blog.csdn.net/qiqiyingse/article/details/64522690