> Is it possible to store a webpage with its images, CSS and javascript > files into the memory? For example, if a website's homepage gets very > high traffic and is reasonable static, then we can store all the page > content into the memory. It can reduce the load and response time. How > can I store all the data into the memory? Is it possible?
You can just generate a static .html file and let your webserver handle caching it. Web servers are very good at caching static content. Dean.
