Changes between Initial Version and Version 1 of Ticket #35576


Ignore:
Timestamp:
Jul 5, 2024, 3:28:48 AM (3 months ago)
Author:
Sridhar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35576 – Description

    initial v1  
    11We have deployed our Django app on lambda, the first request always takes 5-6 seconds excluding lambda cold start times.
    22
    3 `get_app_list` and `reverse functions` take too long. The reverse function to prepare and match uri takes O(n).
     3My 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
    48I am attaching the Cprofile results below.
    59
Back to Top