码迷,mamicode.com
首页 >  
搜索关键字:Prepatch Execution    ( 1783个结果
根据SQL执行时长来优化
1)先清除缓存计划,注意生产环境谨慎使用此语句!dbccfreeProcCache2)再执行查询,系统使用等等3)查找执行最长的语句时间,可能需要执行多次来判断平均时间,代码如下:SELECTcreation_timeN‘语句编译时间‘,last_execution_timeN‘上次执行时间‘,total_physical_readsN‘物理读..
分类:数据库   时间:2014-09-03 13:17:57    阅读次数:238
Tracing java execution (copy from http://zvikico.typepad.com/problog/2007/11/five-ways-for-t.html)
Five ways for tracing Java executionI'm often faced with a situation where I need to dig into code that I didn't write. Most of it is poorly documente...
分类:编程语言   时间:2014-09-03 09:31:16    阅读次数:390
也许是被误解的浏览器资源加载优化
几乎每一个前端程序员都知道应该把script标签放在页面底部。关于这个经典的论述可以追溯到Nicholas的 High Performance Javasript 这本书的第一章Loading and Execution中,他之所以建议这么做是因为:Put all ...
分类:其他好文   时间:2014-09-03 09:29:06    阅读次数:463
php register_shutdown_function
register_shutdown_function—Register a function for execution on shutdownvoidregister_shutdown_function(callable$callback[,mixed$parameter[,mixed$...]]...
分类:Web程序   时间:2014-09-01 15:32:33    阅读次数:218
Methods and systems to control virtual machines
Methods and systems are provided to control the execution of a virtual machine (VM). A VM Monitor (VMM) accesses VM Control Structures (VMCS) indirect...
分类:其他好文   时间:2014-08-30 01:10:40    阅读次数:383
Spring AOP中 pointcut expression表达式解析
任意公共方法的执行: execution(public * *(..))任何一个以“set”开始的方法的执行: execution(* set*(..))AccountService 接口的任意方法的执行: execution(* com.xyz.service.AccountService....
分类:编程语言   时间:2014-08-28 11:00:29    阅读次数:205
Spring HandlerInterceptor
1.SpringHandlerInterceptor 可以组成一个chain。这个接口有三个方法:public interface HandlerInterceptor { /** * Intercept the execution of a handler. Called after...
分类:编程语言   时间:2014-08-26 15:24:46    阅读次数:277
Non-blocking algorithm(非阻塞算法,非阻塞同步的算法实现)
Non-blocking algorithm In computer science, a non-blocking algorithm ensures that threads competing for a shared resource do not have their execution indefinitely postponed by mutual ex...
分类:其他好文   时间:2014-08-26 09:52:09    阅读次数:270
CoreException: Could not get the value for parameter compilerId for plugin execution default-compile
CoreException: Could not get the value for parameter compilerId for plugin execution default-compile: PluginResolutionException: Plugin org.apache.maven.plugins:maven-compiler-plugin:3.1 or one of its...
分类:其他好文   时间:2014-08-25 14:59:44    阅读次数:171
Android: 亲测解决模拟器启动慢的问题
1.首先在对应的sdk manager里面下载一个4.03以上的api。    这里我选择的是4.2.2 (api17) 2.选择里面的" Intel Hardware Accelerated Execution Manager" "Intel x86 Atom System Image" 来下载。 当然其他必备的也要下载。  看我勾选的项: 3....
分类:移动开发   时间:2014-08-21 21:15:18    阅读次数:325
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!