在项目前期目标是确保功能能够正常运行,但是随着时间的推移,数据的增加,逻辑的复杂,导致数据查询会越来越慢,这个时候我们首先想到的应该就是尽量优化sql。 sql优化常见注意点: 1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。 2.应尽量避 ...
分类:
数据库 时间:
2017-04-24 19:43:57
阅读次数:
198
参考:http://www.ruanyifeng.com/blog/2015/04/tail-call.html 什么是尾递归呢? 函数最后一步是调用自身,就称为尾递归。 尾递归可以用循环实现。 什么是尾调用: 某个函数的最后一步是调用另一个函数。 上面代码中,函数f的最后一步是调用函数g,这就叫尾 ...
分类:
其他好文 时间:
2017-04-24 12:25:41
阅读次数:
121
⊙ SessionFactory : 这是Hibernate的关键对象,它是单个数据库映射关系经过编译后的内存镜像,也是线程安全的。它是生成Session的工厂,本身需要依赖于ConnectionProvider。该对象可以在进程或集群的级别上,为那些事务之间可以重用的数据提供可选的二级缓存。 ⊙ ...
分类:
Web程序 时间:
2017-04-23 20:20:57
阅读次数:
212
题目描述 请设计一个算法,计算n的阶乘有多少个尾随零。 给定一个int n,请返回n的阶乘的尾零个数。保证n为正整数。 测试样例: 5 返回:1 class Factor { public: int getFactorSuffixZero(int n) { // write code here in ...
分类:
其他好文 时间:
2017-04-22 09:39:58
阅读次数:
137
In this lesson we'll take a stateful React component and look at how we can refactor our setState calls to use an updater function and then leverage R ...
分类:
其他好文 时间:
2017-04-21 09:45:06
阅读次数:
195
工厂模式(Factor Pattern) 负责生成其他对象的类或方法 代码实现: ...
分类:
其他好文 时间:
2017-04-20 21:03:15
阅读次数:
118
在pom.xml中添加 添加配置类 启动springboot,输入http://localhost:9999/druid/index.html 出现登陆框,密码和用户名都设置为admin,输入进入。 ...
分类:
编程语言 时间:
2017-04-20 15:19:51
阅读次数:
206
log4j.properties: ### direct log messages to stdout ### log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.Target=System.out ...
分类:
编程语言 时间:
2017-04-19 12:54:51
阅读次数:
967
1 3 4.0.0 4 com.tcl.kuyu.salesreport 5 salesreport-server 6 war 7 1.0-SNAPSHOT 8 salesreport-server 9 http://maven.apache.org 10 11 12 13 1.8.9 14 1.8... ...
分类:
其他好文 时间:
2017-04-18 00:37:03
阅读次数:
341