Hello (I think I might have seen this discussed here before but I can't find that thread.)
How could I enable user to upload his static content to serve it later from my app? User would upload zipped html+images+styles..., the app would unpack that archive, and then what? Obviously the only place I can store stuff on GAE is Datastore. But given single HTML page might easily generate tens of requests that does not seem to be the 100% answer. I could load the package into memcache when *.html requests comes, and serve the HTML itself and all its resources from memcache. But obviously I can lose memcache content anytime, so viewer might end with broken page. I could probably load that package into memcache again during the page loading process, and then again, and then again if I'm very unlucky. And the page might render correctly in the end. Is there a better solution? Or if anyone knew where similar scenario has been discussed...? Best regards J. Záruba -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
