Python garbage collection can be that slow?

前端 未结 3 509
清酒与你
清酒与你 2021-01-01 18:45

I have a problem with my python application, and I think it\'s related to the python garbage collection, even if I\'m not sure...

The problem is that my application

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-01 19:18

    Yes, it could be garbage collection, but it could also be some synchronisation with the C++ code, or something completely different (hard to say without code).

    Anyway, you should have a look at SIG for development of Python/C++ integration to find issues and how to speed up things.

提交回复
热议问题