Hello,
We have a meteor application with server-side rendering. We have static and dynamic pages but we need to cache static pages only with its HTML/CSS and API data on the server for fast response to users.
For example, When a user accesses a static page, it is initially fetched from the server, and subsequently, it is retrieved from the cache for subsequent visits. In the case of a dynamic page, it is always served directly from the server without utilizing a cached version.
So is there a way to archive the above caching in Meteor JS?