Skip to content

In the base py2pdevs model, connections were using a list to track configured...

Matias Bonaventura requested to merge perf_issue_big_py2pdevs into master

In the base py2pdevs model, connections were using a list to track configured connections. In line 200, it was checking if a connection was already in the list. For huge models this search can take a long time.

Updating the lists to sets, improved performance from 10s to 1s in some models.

Merge request reports