码迷,mamicode.com
首页 >  
搜索关键字:perf    ( 197个结果
(一)Android性能优化系列---Performance Tips(文章出处:http://developer.android.com/training/articles/perf-tips.html#Myths)
本文列出的优化技巧主要是一些微小的性能提升,可能不会给你的程序性能改善产生显著的效果。决定程序整体性能的仍然取决于程序的业务逻辑设计、代码的数据结构和算法,这超出了本文的范围。你需要将这些优化技巧应用到平时的编码过程中,积少成多,也会对性能有很大的影响。 下面是写高效代码的两个基本原则: 1...
分类:移动开发   时间:2014-12-11 18:57:19    阅读次数:223
Linux kernel perf_swevent_init Local root Exploit
64位上编译另外修改了原Exploit的一个错误第76行把 uint64_t *p = (void *) ¤t[i];改成 uint64_t *p = (void *) &current[i];** CVE-2013-2094 exploit x86_64 Linux #include #inc.....
分类:系统相关   时间:2014-12-11 06:44:18    阅读次数:204
Understanding and Managing SMTP Virtual Servers
Simple Mail Transfer Protocol (SMTP) Service OverviewThe Simple Mail Transfer Protocol (SMTP) service, a primary service included as part of IIS, perf...
分类:其他好文   时间:2014-12-08 12:19:32    阅读次数:270
erlang 故障排查工具
系统级别perf top, dstat -tam, vtune 都能很好分析beam 瓶颈,本文主要erlang 级别排查:1. 反编译 确认线上运行代码是否正确,reltools没掌握好,升级偶尔出现问题decompile(Mod) -> {ok,{_,[{abstract_code,{_,...
分类:其他好文   时间:2014-12-07 12:33:40    阅读次数:252
linux下如何删除一百万个文件
今日QA发了个请求,要求删除某目录下指定格式的文件。[root@xxresin-3.1.9]#ls|wc-l1013964统计了下,有一百万多个文件!而且文件的命名也很古怪,如“d:\temp\perf\1413787853558.html”...直接用rm-f*.html,不支持!-bash:/bin/rm:Argumentlisttoolong尝试用xargs,ls也不支..
分类:系统相关   时间:2014-12-04 15:55:12    阅读次数:282
Android perf tools
文档,也可以直接在你的SDK的源代码找。 http://lxr.free-electrons.com/source/tools/perf/Documentation/ 更加深入(深奥)的文档 https://perf.wiki.kernel.org/index.php/Tutorial 如何采集一个小程序的样本?...
分类:移动开发   时间:2014-10-11 12:37:55    阅读次数:196
Perf Event :Linux下的系统性能调优工具
Perf Event :Linux下的系统性能调优工具2011-05-27 10:35 刘 明 IBMDW字号:T|TPerf Event 是一款随 Linux 内核代码一同发布和维护的性能诊断工具,由内核社区维护和发展。Perf 不仅可以用于应用程序的性能统计分析,也可以应用于内核代码的性能统计和...
分类:系统相关   时间:2014-09-09 22:54:19    阅读次数:562
Implementing a java agent to instrument code (copy from http://chimpler.wordpress.com/2013/11/05/implementing-a-java-agent-to-instrument-code/)
With a system running 24/7, you have to make sure that it performs well at any time of the day. Several commercial solutions exist to monitor the perf...
分类:编程语言   时间:2014-09-02 21:08:15    阅读次数:338
算法导论第一课
1.课程分两部分:算法分析,算法设计2.算法分析:首先考虑的是性能,how fast;其次会考虑通信,ram,disk占用等等3.what is more important than perf ? 功能性,模块化,安全,用户友好,可扩展... then why study algs? 1,perf...
分类:其他好文   时间:2014-07-29 16:47:12    阅读次数:266
程序性能调优的利器
gprof,oprofile,perf的使用 gprof 用户手册?http://sourceware.org/binutils/docs-2.17/gprof/index.html oprofile官方站点?http://oprofile.sourceforge.net/ 使用 GNU profiler 来提高代码运行速度?http://...
分类:其他好文   时间:2014-07-22 08:10:37    阅读次数:160
197条   上一页 1 ... 17 18 19 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!