解释 w3wp.exe 线程信息,mscorwks.dll!StrongNameErrorInfo+0x7688 是否会产生负面影响
我试图解释“mscorwks.dll!StrongNameErrorInfo+0x7688”的含义。我想这意味着 mscorworks.dll 加载的程序集没有 StrongName?如果是,这会对 Web 应用程序产生负面影响吗?
是否可以安全地假设线程数 107 意味着 Web 应用程序需要最多 107 个并发线程来处理传入请求?
I am trying to interpret the meaning of "mscorwks.dll!StrongNameErrorInfo+0x7688". I guess it means, that the assembly loaded by the mscorworks.dll has no StrongName? If yes, does this have any negative impact for a web application?
Is it safe to assume that the thread count of 107 means, that web application needed at a peek a maximum of 107 concurrent threads to handle incoming requests?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
偏移量 0x7688 强烈表明这不是方法的正确名称(并且存在符号正确性问题)。
107 个线程看起来非常高,除非在服务请求时发生大量阻塞,也许是时候异步执行一些操作了?
An offset of 0x7688 strongly indicates that is not the correct name for method (and there is a symbol correctness issue).
107 threads seems very high, unless there is a lot of blocking going on when serving requests, perhaps time to perform some operations asynchronously?