Currently, the slow deduction speed is mainly due to the slow dependency extraction, which presents several issues:
- Whenever there's a change in one part of the code, almost all business sections need to reinstall dependencies.
- Even if dependencies remain unchanged, any code modification requires reinstallation of dependencies.
- Repeated dependencies between different closures need reinstallation, even when using pip cache, the installation speed remains slow.
Currently, the slow deduction speed is mainly due to the slow dependency extraction, which presents several issues: