Google App Engine - Caching generated HTML

Posted by Alexander on Stack Overflow See other posts from Stack Overflow or by Alexander
Published on 2009-12-18T22:08:32Z Indexed on 2010/06/03 17:24 UTC
Read the original article Hit count: 314

Filed under:
|
|
|

I have written a Google App Engine application that programatically generates a bunch of HTML code that is really the same output for each user who logs into my system, and I know that this is going to be in-efficient when the code goes into production. So, I am trying to figure out the best way to cache the generated pages.

The most probable option is to generate the pages and write them into the database, and then check the time of the database put operation for a given page against the time that the code was last updated. Then, if the code is newer than the last put to the database (for a particular HTML request), new HTML will be generated and served, and cached to the database. If the code is older than the last put to the database, then I will just get the HTML direct from the database and serve it (therefore avoiding all the CPU wastage of generating the HTML). I am not only looking to minimize load times, but to minimize CPU usage.

However, one issue that I am having is that I can't figure out how to programatically check when the version of code uploaded to the app engine was updated.

I am open to any suggestions on this approach, or other approaches for caching generated html.

Note that while memcache could help in this situation, I believe that it is not the final solution since I really only need to re-generate html when the code is updated (as opposed to every time the memcache expires).

Kind Regards, and thank you in advance for any suggestions you may be able to offer. -Alex

© Stack Overflow or respective owner

Related posts about html

Related posts about google-app-engine