理论性能测试
- 系统:Ubuntu22.04(虚拟机,8G内存 8核心 8线程)
(宿主系统:Windows 11) - .Net版本:6.0.400
using ColoryrServer.SDK;
public class app_test
{
[NotesSDK("一个接口", new string[1]{ "输入" }, new string[1]{ "输出" })]
public dynamic main(HttpRequest http)
{
return "true";
}
}