首页 \ 问答 \ 性能测试与性能分析(Performance Testing vs Profiling)

性能测试与性能分析(Performance Testing vs Profiling)

我正在处理大量中等复杂的Java / Jsp应用程序,并想知道使用Jmeter进行性能测试时使用Jprofiler / Netbeans分析器进行性能分析的优势。 如果有人提供相同的建议,我将非常感激。


Am working with lots of mid-complexity Java/Jsp applications and wondering what would be an added advantage of doing performance testing using say Jmeter over profiling using Jprofiler/Netbeans profiler. Would highly appreciate if anyone provides any recommendations around the same.


原文:https://stackoverflow.com/questions/9187942
更新时间:2021-09-04 21:09

最新回答

条形统计图的数据,如果是单数的话,就是取数据中最中间的数值;但如果是双数的话就取数据最中间的2个数值的平均值。
具体什么统计图呢?

相关问答

更多
  • 目前没有成熟的直接可以写入word的方法,只能通过先生成图片,然后再写入
  • 请看公式: (L代表中位数所在组的下限,Fm表示中位数所在组次数,Sm-1表示中位数组前累计组次数,d表示组距) 来看本题,中位数=70+{[(60/2)-20]/20}*10=75 当然你用组中值75代替,大大简化了运算。
  • 10、16、18、【中位数】、18、18、20的中位数是【18】; 方法: 先按大小顺序排列后,如果一列数的个数有奇数个时,正中间的一个数就是中位数; 如果一列数的个数有偶数个时,中位数是中间的两个数的平均数,即(18+18)÷2=18。
  • --1 select median (sales) from total_sales --2 select avg(sales) from (select row_number() over(order by sales) as rn, name, sales from total_sales) t, (select count(*) / 2 as mid_c from total_sales) b where rn = b.mid_c or rn = trunc (b.mid_c+1)
  • 平均数、众数、中位数这三个统计量的各自特点是:平均数的大小与一组数据里的每个数据均有关系,其中任何数据的变动都会相应引起平均数的变动;众数则着眼于对各数据出现的次数的考察,其大小只与这组数据中的部分数据有关,当一组数据中有不少数据多次重复出现时,其众数往往是我们关心的一种统计量;中位数则仅与数据排列位置有关,当一组数据从小到大排列后,最中间的数据为中位数(偶数个数据的最中间两个的平均数)。因此某些数据的变动对它的中位数影响不大。在同一组数据中,众数、中位数和平均数也各有其特性:(1)中位数与平均数是唯一存在 ...
  • 把总数乘以扇形统计图每个部分所占比率,就能求出条形统计图
  • 画扇形统计图[2022-06-07]

    1,求各部分占整体的百分数.用百分数乘以360度,为圆心角读数. 2,画一个圆,画以上求出的各圆心角. 3,标注各部分的名称,数量 4,写总图名. 就是一个圆形,把各个部分所占的比例,画在一个圆中,就可以了
  • GNU科学图书馆(GSL)提供的功能。 另一个提到的流行病似乎在GSL之上提供了一层。 GSL需要牢记的一点是,它通常是许多功能的缓慢执行。 例如,其平均计算在循环内执行分割以确保结果的最佳可能精度。 在许多应用中,因此成本不值得精确。 GNU Scientific Library (GSL) provides the functionality. Apophenia mentioned by another appears to provide a layer on top of GSL. Somethi ...
  • 试试medcol boxplot(matrix(rnorm(100), ncol=2), medcol="red") Try medcol as in boxplot(matrix(rnorm(100), ncol=2), medcol="red")
  • 偶数个元素的中位数被定义为中心元素的平均值: var allitems : TArray; TArray.Sort(allitems); median := (allitems[249] + allitems[250]) / 2; // TArray starts with index 0 The Median of an even number of elements is defined as the mean of the center ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)