gpt4 book ai didi

c# - 在 ASP.net MVC 中使用 benchmarkdotnet 获取性能结果

转载 作者:行者123 更新时间:2023-12-05 06:40:30 28 4
gpt4 key购买 nike

我正在测试基准库以衡量代码的性能。我正在阅读文档。

我不知道如何打印出基准测试结果。我有一个名为 user 的类,我想标记以下方法。

[Benchmark]
public bool FollowerAdded(User newFollower)
{
// code for notifying user that they have an added follower
Notification notification = new Notification();
return notification.NotifyUser(this, newFollower.UserName + " is now following you!");
}

在 benchmarkdot net 的文档中,使用以下代码获取基准的打印输出。

var summary = BenchmarkRunner.Run<User>();

在 Asp.net MVC 应用程序获取基准测试结果的情况下,我们可以将此代码放在哪里?

这是图书馆的网址 http://benchmarkdotnet.org/GettingStarted.htm

最佳答案

有点晚了,不过还是这样吧,

可能您需要一个控制台应用程序项目来引用您的库并运行基准测试,运行后结果将打印在控制台上,报告将位于

summary.ResultsDirectoryPath

通常

$(TargetDir)BenchmarkDotNet.Artifacts\results\

关于c# - 在 ASP.net MVC 中使用 benchmarkdotnet 获取性能结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42522702/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com