- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 810
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Performance issue with large interfaces #1350
Comments
Thanks for posting a possible solution. Before we apply it, could we look at a test case that demonstrates the problem? Could you post a minimally complete repro code example? |
@stakx Reproducer is at: https://gist.github.com/rauhs/4cbe672e26dd6727e84f7b96c68dcf1f Without optimization: 24seconds With opt: 7ms. (even with "only" 50 properties we're at 1s of runtime vs 5ms, so huge performance penalty even for non-gigantic interfaces) |
Is there anything we can do to expedite this? |
@kzu Could you release new version of Moq with this fix? It would allow us to significantly decrease time of unit tests execution for our project. |
Hi,
this is basically #1128. Not sure how to re-open it.
Though, it's making Moq unusable for some tests. For us, we have a interface with over 500 slots (
GetInterfaceMap
) which is taking all the time.Here is a quick PerfView trace of the runtime:
The fix is pretty simple:
This makes the above run in a few ms as opposed to 14 seconds.
The text was updated successfully, but these errors were encountered: