calcom / docker

The Docker configuration for Cal.com is an effort powered by people within the community. Cal.com, Inc. does not provide official support for Docker, but we will accept fixes and documentation. Use at your own risk.
MIT License
662 stars 344 forks source link

Document/clarify page caching as a troubleshooting issue #212

Open krumware opened 1 year ago

krumware commented 1 year ago

There are a number of cases where page caching is making it appear like certain variable changes or other updates have not deployed with the latest container/pod. This is unavoidable in the browser, so we should make a general remark about caching in the Troubleshooting section. One example change is the change of the NEXT_PUBLIC_WEBAPP_URL variable, which sometimes only appears after the page successfully invalidates the cache.

Good for a newcomer

Harshkumar2000 commented 1 year ago

I would like to work on it I have some initial troubleshooting as follow Try clearing your browser's cache and reloading the page. This will resolve issues where the browser is caching old versions of the page.

If clearing the cache doesn't work, try opening the page in a private browsing window or incognito mode. This will disable caching for that session, allowing you to see the most up-to-date version of the page.

If you're using a content delivery network (CDN) or other caching service, try purging the cache for your site. This will force the CDN to fetch the latest version of your site from the origin server.

these are my intial thought on this . I want more guidance/material related this .