码迷,mamicode.com
首页 >  
搜索关键字:profiling    ( 254个结果
在 Chrome 开发者工具中调试 node.js
命令行工具 devtool ,它可以在 Chrome 的开发者工具中运行 Node.js 程序。 下面的记录显示了在一个 HTTP 服务器中设置断点的情况。 该工具基于 Electron 将 Node.js 和 Chromium 的功能融合在了一起。它的目的在于为调试、分析和开发 Node.js 应 ...
分类:Web程序   时间:2017-03-04 20:59:52    阅读次数:302
java 统计英文字符
import java.util.Arrays; /* * The Associated Press won an award for its series on the profiling of Muslims by the New York Police Department. But for ... ...
分类:编程语言   时间:2017-02-26 12:43:13    阅读次数:224
Mysql自带profiling性能分析工具使用分享
1. show variables like '%profiling%';(查看profiling信息) 2. set profiling=1;(开启profiling) 3. 执行SQL查询 例:select goods_name from ecs_goods where goods_id <50 ...
分类:数据库   时间:2017-02-11 23:49:03    阅读次数:296
Monitoring and profiling tool for .Net solutions like VisualVM for Java
Commercial: ANTS Memory Profiler:http://www.red-gate.com/products/dotnet-development/ants-memory-profiler/ ANTS Performance Profiler:http://www.red-ga ...
分类:编程语言   时间:2017-01-17 23:01:29    阅读次数:257
系统级性能分析工具perf的介绍与使用
测试环境:Ubuntu14.04 on VMWare Kernel:3.13.0-32 系统级性能优化通常包括两个阶段:性能剖析(performance profiling)和代码优化。性能剖析的目标是寻找性能瓶颈,查找引发性能问题的原因及热点代码。代码优化的目标是针对具体性能问题而优化代码或编译选... ...
分类:其他好文   时间:2017-01-04 21:59:06    阅读次数:1312
Python profiling
Profiling(性能调试)是我一直很感兴趣的一个话题,之前给大家介绍过Datadog这个工具,今天我们来看看Python语言中有哪些方法来做Profiling。 Poorman's Profiler 最基础的就是使用time.time()来计时,这个方法简单有效,也许所有写过Python代码的人 ...
分类:编程语言   时间:2016-12-07 22:41:31    阅读次数:245
nginx配合modsecurity实现WAF功能
一、准备工作 系统:centos 7.2 64位、nginx1.10.2, modsecurity2.9.1 owasp3.0 1、nginx:http://nginx.org/download/nginx-1.10.2.tar.gz 2、modsecurity for Nginx: https:/ ...
分类:其他好文   时间:2016-12-03 12:12:18    阅读次数:770
MySQL优化工具之 profiling
MySQL优化工具之profiling使用慢查询日志分析出慢查询语句后,用profiling分析该语句的优化后执行效果。查看慢查询设置mysql>showvariableslike"%slow%";+---------------------+---------------------------------+|Variable_name|Value|+---------------------+----------..
分类:数据库   时间:2016-11-24 12:06:33    阅读次数:318
mysql查询语句优化工具
把这个profiling功能打开,可以查看sql查询语句的整个过程中各种资源的消耗情况。mysql>showprofiles;+----------+------------+---------------------------------+|Query_ID|Duration|Query|+----------+------------+---------------------------------+|1|0.00049600|sh..
分类:数据库   时间:2016-11-21 20:39:39    阅读次数:260
sql 查询执行的详细时间profile
1.查看profile的设置 结果如下:profiling OFF 为关闭状态 2.开启profile 结果: 3.执行需要执行的sql explain select*........ 4.查询执行的sql 结果: 5.查看需要的sql执行详细信息 结果: 结果: 结果: status: hecki ...
分类:数据库   时间:2016-10-27 19:38:25    阅读次数:202
254条   上一页 1 ... 12 13 14 15 16 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!