Hi @PradeepMC1 ,
You can control caching of pages by cache-control header for a cacheable page:
Cache-Control: public, max-age=3600, stale-while-revalidate=60
public: Indicates that the response can be cached by any cache, including browsers and CDNs.max-age=3600: Sets the cache duration to one...