-
-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed the page loading takes too much time and implemented lazy loading instead of that on statistic charts on repo details page #3925
base: main
Are you sure you want to change the base?
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨ |
|
As we need to get very detailed data of 2 months for making the chart, so we have to call the API of GitHub again and again to get all the required data. So, a possible solution could be caching these data into redis, it might help the page to load faster |
Untitled.video.-.Made.with.Clipchamp.mp4
It resolves #3897
I just implemented lazy loading of the statistic chart. That reduced the page's loading time. As the calculation and data gathering for the charts is time-consuming, it takes some time to load after the page is rendered as shown in the video.