Changes between Initial Version and Version 1 of Ticket #35576
- Timestamp:
- Jul 5, 2024, 3:28:48 AM (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35576 – Description
initial v1 1 1 We have deployed our Django app on lambda, the first request always takes 5-6 seconds excluding lambda cold start times. 2 2 3 `get_app_list` and `reverse functions` take too long. The reverse function to prepare and match uri takes O(n). 3 My Observations: 4 - `get_app_list` and `reverse functions` take too long. 5 - The reverse function to prepare and match uri takes O(n). 6 - Django adds two URLs for every model we register, so this wait time increases as we add models or write our own rest apis. 7 4 8 I am attaching the Cprofile results below. 5 9