码迷,mamicode.com
首页 >  
搜索关键字:profiling    ( 254个结果
Profiling Java Application with Systemtap
https://laurent-leturgez.com/2017/12/22/profiling-java-application-with-systemtap/ https://myaut.github.io/dtrace-stap-book/app/java.html I’m not a JV ...
分类:移动开发   时间:2017-12-22 20:50:56    阅读次数:275
mysql性能分析-------profiling和explain
1. profiling之性能分析 Duration:我需要时间; query:执行的sql语句; 2.查看详情: show profile for query 2; 3.查看cup和io情况 show profile cpu,block io for query 2; 2.explain 分析 1 ...
分类:数据库   时间:2017-12-08 19:33:27    阅读次数:215
mysql 如何查看sql语句执行时间和效率
查看执行时间 1 show profiles; 2 show variables;查看profiling 是否是on状态; 3 如果是off,则 set profiling = 1; 4 执行自己的sql语句; 5 show profiles;就可以查到sql语句的执行时间; 查看操作了多少行 在s ...
分类:数据库   时间:2017-11-16 14:11:42    阅读次数:132
Mongodb 3 查询优化
开启慢查询Profiling Profiling级别说明 1、通过修改配置文件开启Profiling 修改启动mongo.conf,插入以下代码 2、在启动mongodb服务以后,通过mongoshell来进行临时性打开启,只要关闭了mongodb服务,下次开启就不会启动,还得再开一次 (1)、在m ...
分类:数据库   时间:2017-11-07 19:57:25    阅读次数:197
关于Go语言MemoryProfile的一些问题
关于如何使用pprof进行profiling的问题,请参考https://studygolang.com/articles/7069,本文仅做一些补充。 1. http://xxx:6060/debug/pprof/heap?debug=1页面的解释 ...
分类:编程语言   时间:2017-11-03 15:24:52    阅读次数:184
Mysql 5.7版本报错 1055
错误提示: [Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' whi ...
分类:数据库   时间:2017-09-26 13:35:40    阅读次数:217
Zenject与UniRx结合实现跨线程通信Signal
修改Zenject下ProfileBlock.cs源码, 取消有关UnityEngine.Profiling.Profiler的代码. 然后使用Zenject的Signal: // 定义Signal public class TestCrossThreadCommEvent : Signal<str ...
分类:编程语言   时间:2017-09-10 14:28:24    阅读次数:290
c#中string拼接的效率分析
通过unity profiler测试的代码,及运行结果 using UnityEngine; using UnityEngine.Profiling; using System.Text; #if UNITY_5_5_OR_NEWER using TProfiler = UnityEngine.Pr ...
分类:Windows程序   时间:2017-08-21 20:35:13    阅读次数:289
MySQL存储引擎与数据类型
1 数据存储引擎 存储引擎的概念是MySQL的一个特性,它指定了表的类型(诸如表怎样存储与索引数据、是否支持事务、外键等),表在计算机中的存储方式。 1.1 MySql支持的数据存储引擎 查看引擎信息 通过命令来查看引擎信息 show engines; 默认存储引擎为InnoDB,例如以下列出: E ...
分类:数据库   时间:2017-08-16 13:11:17    阅读次数:282
使用Golang进行性能分析(Profiling)
转自:http://www.cppblog.com/sunicdavy/archive/2015/04/11/210308.html 本文介绍游戏服务器的性能分析, web服务器性能分析不在本文分析范畴之内 Golang编写的服务器可以方便的通过内建性能分析, 输出图表仔细查找原因, 非常的方便, ...
分类:其他好文   时间:2017-07-07 17:32:13    阅读次数:161
254条   上一页 1 ... 9 10 11 12 13 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!