Interpreting w3wp.exe thread-infos, does mscorwks.dll!StrongNameErrorInfo+0x7688 has a negative impact
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 impa开发者_开发问答ct 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?
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?
精彩评论