如何在学术项目的 ASP.NET Web 应用程序中进行负载测试、查询分析

发布于 2024-11-06 11:18:48 字数 209 浏览 7 评论 0原文

我使用 sql server(存储过程并使用 linqtosql)在 asp.net 中开发了一个电子商务 Web 应用程序。我想执行负载测试、压力测试、客户端请求服务器页面时的响应时间,并且我还想分析应用程序执行 sql 指令/从数据库检索数据所需的时间。

我怎样才能进行这个分析?我是一名大学学生,所以我可以使用的工具非常有限。

帮帮我吧!!

感谢期待

I have developed a e-commerce web application in asp.net using sql server (stored procedures and using linqtosql). I want to perform load testing, stress testing, response time for client when he requests server pages, and i also want to analyse the time the application takes to execute the sql instructions/retrieving the data from database.

How can i perform this analysis ? I'm a student in a university, so the tools that i have at my disposal are quite limited.

Help me out !!

Thanks in anticipation

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾城花音 2024-11-13 11:18:48

用于负载测试的免费工具是Microsoft 的 WCat。

从产品描述来看:

网络容量分析工具 (WCAT) 是一个
轻量级HTTP负载生成工具
主要设计用于测量
网络服务器的性能
受控环境。 WCAT可以
模拟数千个并发用户
向单个网站发出请求
或多个网站。世界猫协会
引擎使用一个简单的脚本来定义
要播放的 HTTP 请求集
返回到网络服务器。可扩展性
通过插件 DLL 和
标准、简单的API。

A free tool for load testing is Microsoft's WCat.

From the product description:

Web Capacity Analysis Tool (WCAT) is a
lightweight HTTP load generation tool
primarily designed to measure the
performance of a web server within a
controlled environment. WCAT can
simulate thousands of concurrent users
making requests to a single web site
or multiple web sites. The WCAT
engine uses a simple script to define
the set of HTTP requests to be played
back to the web server. Extensibility
is provided through plug-in DLLs and a
standard, simple API.

つ低調成傷 2024-11-13 11:18:48

另一个免费的负载测试工具是我们公司提供的 StresStimulus fiddler 插件。它不需要编写脚本或使用 API,因为它只是重放 fiddler 中记录的会话。免费版最多允许 1500 个用户。每个请求的平均响应时间以网格形式呈现,而即时性能特征以图表形式显示。

要分析 sql 指令时间,您可以使用 SQL 配置文件,因为您已经拥有 SQL 服务器。

Another free load testing tool is StresStimulus fiddler add-on, offered by our firm. It does not require scripting or using API, since it simply replays sessions recorded in fiddler. Free edition allows up to 1500 users. The average response time of every request is presented in a grid while instant performance characteristics are displayed in graphs.

To analyze the sql instructions time you can use SQL profiles since you already have SQL server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文