• [转]性能测试分析

    2008-07-05 16:53:09

    分析原则:具体问题具体分析(这是由于不同的应用系统,不同的测试目的,不同的性能关注点)查找瓶颈时按以下顺序,由易到难。服务器硬件瓶颈-〉网络瓶颈(对局域网,可以不考虑)-〉服务器操作系统瓶颈(参数配置)-〉中间件瓶颈(参数配置,数据库,web服务器等)-〉应用瓶颈(SQL语句、数据库设计、业务逻辑、算法等)注:以上过程并不是每个分析中都需要的,要根据测试目的和要求来确定分析的深度。对一些要求低的,我们分析到应用系统在将来大的负载压力(并发用户数、数据量)下,系统的硬件瓶颈在哪儿就.
  • linux性能分析 工具

    2008-07-04 23:47:44

    linux性能分析 工具.doc
  • 成功的 Web 应用系统性能测试

    2008-07-02 20:45:31

    级别: 初级性能测试是 Web 应用系统的一项重要质量保证措施。在现实中,很多 Web 性能测试项目由于性能测试需求定义不合理或不明确,导致性能测试项目不能达到预期目标或进度超期。本文针对 Web 应用系统的技术架构和系统使用特点,探讨如何有效实施性能测试过程,并重点介绍如何分析获得合理的性能测试需求,最终对 Web 应用系统性能进行科学、准确的评估。1 引言基于Web服务器的应用系统由于提供浏览器界面而无须安装,大大降低了系统部署和升级成本,得以普遍应用。目前,很多企业的核心业务系统均是Web应用,但当.
  • 提高 Ajax 应用程序性能,避开 Web 服务漏洞

    2008-07-02 20:43:04

    Judith Myerson (jmyerson@bellatlantic.net), 系统架构师和工程师部署高效带宽 Ajax 应用程序并不能保证 Service Level Agreement 中的服务水平很高。无论怎样修改 Ajax 代码来提高带宽效率,始终存在一些风险和漏洞,需要您进行监视并解决。developerWorks 定期撰稿人 Judith Myerson 对 Ajax 进行了简单的概述,解释了 Web 服务漏洞是什么以及为何 Service Level Agreements(SLA)如此重要,并提出了一些改进 Ajax 应用程序的解决方案。简介在最近的 developerWorks 系列 在 Web 服务上下文中使用 SLA 中,我谈论了使用.
  • 高速缓存和连接池对访问数据库性能的影响

    2008-07-02 20:36:19

    FoolsGarden@SMTH (FoolsGarden@SMTH), 自由Java传道士介绍高速缓存和连接池的基础上,给出解决数据库性能问题的一些有用办法。初识高速缓存和连接池设想这样一种情形:你突然口渴,需要一杯水来缓解,从心情上来讲,当然是越快越好了。通常,一杯水的产生包括从水源(井水、河水或江水、甚至海水等)抽取,通过管道传输和设备净化,才到达你饮水的容器中。上述过程是必须的,但并不是每一杯水的产生都必须把上述过程重复一次。你可以用一个大一点的容器(例如缸或罐等)来盛大量的水,喝水之前分到杯子小部分中即可,.
  • 轻松使用线程: 减少争用

    2008-07-01 18:31:43

    Brian Goetz (brian@quiotix.com), 软件顾问当我们说一个程序“太慢”时,我们通常是指两个性能属性 — 等待时间和可伸缩性 — 中的一个。 等待时间指完成一个给定任务所花费的时间,而 可伸缩性则指随着负载的增加或给定计算资源的增加,程序的性能将怎样变化。严重的争用对等待时间和可伸缩性都不利。争用为什么是这样一个问题争用同步之所以慢,是因为它涉及多个线程切换和系统调用。当多个线程争用同一个管程时,JVM 将不得不维护一个等待该管程的线程队列(并且这个队列在多个处理器间必须是同步的),这就意味着花.
  • SQL Server Performance Coding Standards

    2008-07-01 18:24:51

    By : Amol Ramesh Kulkarni1. Avoid using “*” in SELECT queriesAlways specify the required list of columns in the select list. This will ensure that only the columns required by the query are returned to avoid unnecessary I/O and processing.2. Always use variables of the appropriate data type and sizeUse appropiate data types to avoid implicit data type conversion being perfromed by SQL Server and appropiate sizes to avoid excess usage of memory.For example, assigning an i.
  • 专家堂的活动呢?

    2008-06-30 18:53:09

    活动呢,兄弟们?大家进入专家堂,都站那看着?这个版谁来主持的?
  • [投票]你希望从本版块得到什么?

    2008-06-30 16:45:53

    我想知道一下,进入这个版块的人,感兴趣的是什么?[ 本帖最后由 Zee 于 2008-6-30 16:51 编辑 ]
  • LoadRunner自定义HTTP关联规则

    2008-06-28 11:51:28

    LoadRunner自定义HTTP关联规则
  • Linux下应用程序到底使用了多少内存 ?

    2008-06-26 22:19:45

    一般我们通过top命令查看IO,Mem使用,由于很多程序是配置的内存参数,所以即使真正没有使用那么多内存,也会被这些程序占用 。top看到的不是程序实际使用的大小 。[root@ECSDB ~]# freetotal used free shared buffers cachedMem: 16406396 16370448 35948 0 91624 15534544-/+ buffers/cache: 744280 15662116Swap: 16779884 113044 16666840free 命令详解  功能说明:显示内存状态。  语  法: free [-bkmotV][-s ]  补充说明:free指令会显示内存的使用情况,包括实体内存,虚拟的交换文.
  • Linux 性能分析工具汇总

    2008-06-26 22:16:32

    性能分析工具CPU性能分析工具:vmstatpssartimestracepstreetopMemory性能分析工具:vmstatstracetopipcsipcrmcat /proc/meminfocat /proc/slabinfocat /proc//mapsI/O性能分析工具:vmstatipstatrepquotaquotacheckNetwork性能分析工具:ifconfigetherealtetherealiptrafiwconfignfsstatmrtgntopnetstatcat /proc/sys/netLinux 性能调优工具当通过上述工具及命令,我们发现了应用的性.
  • 数据库慢该如何着手[转]

    2008-06-26 22:12:23

    http://blog.csdn.net/wyzxg/archive/2008/06/12/2541935.aspxtime: 2008/06/12author:skate要想学好oracle,应该有事没事每天itpub一会,在这里你可以学到很多东西.数据库的performance是一个长期的监控过程,不能头疼医头,脚疼医脚。  数据库慢一般有三种情况  1。逐渐变慢  2。突然变慢  3。不定时变慢  第一种情况 “逐渐变慢”,要建立一个长期的监控机制。比如,写个shell脚本每天的忙时(通常9~10 etc.)定时收集os,network,db的信息,每个星期出report对收集到的信息进行分析.
  • Acceptability for Retail Web Page Response Times

    2008-06-19 13:38:37

    Akamai and JupiterResearch Identify '4 Seconds' as the New Threshold of Acceptability for Retail Web Page Response TimesAkamai and JupiterResearch Identify '4 Seconds' as the New Threshold of Acceptability for Retail Web Page Response TimesCAMBRIDGE, MA — November 6, 2006 — Four seconds is the maximumlength of time an average online shopper will wait for a Web page toload before potentially abandoning a retail site. This is one ofseveral key findings revealed in a report made avai.
  • Acceptable application response times vs. industry standard

    2008-06-18 20:40:41

    Scott BarberIt feels like hardly a single day has passed in thepast six years that someone hasn't asked me this questions: "What isthe industry standard response time for a Web page?"And in the past six years, the answer hasn't changed, not even alittle bit. So if the answer hasn't changed, why am I still gettingasked the question on virtually a daily basis?The answer is simple. It's because there are no industry standards.How could there be? Think about how you use the Web. How long.
  • What is performance testing?

    2008-06-18 14:55:19

    Whatis performance testing? That seems like a silly question, doesn't it? I mean,we've all seen definitions for performance testing. We've conducted performancetests -- or been on projects where performance testing is conducted. But whatis it really? And why is it that even when there seems to be obviousconfusion about what performance testing is and is not, people seem hesitant tostep back and ask "What do you mean when you refer to performancetesting?"WhileI was working on some new traini.
  • TPC-C v5.9

    2008-06-17 09:25:04

    看看吧。有兴趣的可以翻译一下。
  • [原创]LR中常用的C函数

    2006-11-25 21:19:00

    原文见:http://blog.csdn.net/zeeslo.1strcatchar *strcat ( char *to, const char *from );功能:链接两个字符串。例子:这个例子是用strcat链接字符串:zee和slo@hotmail.co脚本如下:char test[1024], *a = "slo@hotmail.com";strcpy(test, "zee");strcat(test, a);lr_output_message("We can see %s",test);运行后在executon log中看到如下语句:Starting action Action.Action.c(16): We can see zeeslo@hotmail.com2.
  • [原创]OATS正交表测试策略-Zee

    2006-09-29 08:02:00

    关键字:OATS:即Orthogonal Array Testing Strategy,正交表测试策略。1OATS的概念:次数(Runs):简单的说,就是次数是多少,就有多少个用例。因素数(Factors):简单的说,就是有多少个变量。水平数(Levels):比如有三个变量,其中变量取值最多的是四个值,那么水平数就是四。强度(Strength):即变量间的相互关系,当强度为二时,只考虑变量两两之间的影响,如果强度为三,同考虑三个变量对结果的影响;当强度增加时,用例的个数会急剧增加。正交表的表现形式: L runs(levels^factors)介.
  • [讨论]Loadruner报错:Error -27728: Step download timeout (120 seconds)的一个解

    2006-08-06 01:30:00

    今天一个网友问了我一个问题如下:loadruner报错:Error -27728: Step download timeout (120 seconds) 如何解决语法检查通过,但是在并发执行一个查询时候报错Action.c(16): Error -27728: Step download timeout (120 seconds) has expired when downloading non-resource(s),请问有啥子解决方法,我使用web_set_timeout ,好象不起作用,直接在option中设置timeout时间为600,(单位应该是秒吧)还是没有起作用,结果都还是提示(120seconds),说明还是以120秒来判断的;使用lrs_set_recv_timeout,语法检查不过,说明库函数里.
402/2<12

我的存档

数据统计

  • 访问量: 12
  • 建立时间: 2008-07-21
  • 更新时间: 2008-07-21

RSS订阅

Open Toolbar