Nested Parallel.ForEach loops

前端 未结 2 1676
说谎
说谎 2020-12-20 10:52

I have some code which I am currently optimizing for concurrency in multicore architectures. In one of my classes, I found a nested foreach loop. Basically the

相关标签:
2条回答
  • 2020-12-20 11:40

    The answer will be, it depends;

    1. What are you doing with the IP address once you have it?
    2. How long does each step take?

    Threads are not cheap, they take time to create, and memory to exist. If you're not doing something computationally expensive with those IP Addresses, and using the wrong type of collection for concurrent access, you're almost certainly slowing down your application.

    Use StopWatch to help you answer these questions.

    0 讨论(0)
  • 2020-12-20 11:41

    A Parallel.ForEach does not necessarily execute in parallel -- it is just a request to do so if possible. Therefore, if the execution environment does not have the CPU power to execute the loops in parallel, it will not do so.

    If the actions on the loops are not related (i.e., if they are separate and do not influence each other), I see no problem using Parallel.ForEach both on inner and outer loops.

    It really depends on the execution environment. You could do timing tests if your test environment is similar enough to the production environment, and then determine what to do. When in doubt, test ;-)

    Good luck!

    0 讨论(0)
提交回复
热议问题