Re: [appengine-java] Re: for the problem "Applications are limited to 150000000 bytes of resource files"

2011-03-19 Thread Chun Guo
Thanks for all the answers. I've been trying to solve this problem by reducing the scale of my data, and will get the result two days later. Thanks again, for the suggestions, and for the kink ones who gave me advice! Chun 2011/3/18 branflake2267 > I had this happen to. What I did is setup a ser

[appengine-java] Re: for the problem "Applications are limited to 150000000 bytes of resource files"

2011-03-18 Thread branflake2267
I had this happen to. What I did is setup a servlet to virtually serve them from the blob store, by using a web.xml to serve them dynamically or virtually. I had no problem with latency. http://demogaemultifileblobupload.appspot.com/ - my demo doing it. You can find source code on my site to ho

[appengine-java] Re: for the problem "Applications are limited to 150000000 bytes of resource files"

2011-03-16 Thread Didier Durand
Hi, the big difference between memcache and "loading to memory" as you say is that the memcache is automatically replicated for you across the jvm automatically started by gae. You can load yourself in memory by (for example) using a singleton as the anchor point for a data structure (probably a

Re: [appengine-java] Re: for the problem "Applications are limited to 150000000 bytes of resource files"

2011-03-16 Thread Chun Guo
Thanks for your advice. But I want to know the difference between loading the records into the main memory and loading the records into the memory cache. An other question is, both of the two approaches will consume a lot of time, but the performance of the former is still questionable. Expecting y

[appengine-java] Re: for the problem "Applications are limited to 150000000 bytes of resource files"

2011-03-16 Thread Cyrille Vincey
If your app is gwt-based, you can reduce the size of your resources by reducing the number of permutations. Gwt compiles one specific final resource package for each permutation (e.g: 5 browsers x 3 locales > 15 permutations). This might lead to very heavy resources. See either http://code.googl

[appengine-java] Re: for the problem "Applications are limited to 150000000 bytes of resource files"

2011-03-16 Thread Didier Durand
Hi, In order to achieve your goal is the quota limit cannot be changed, may I suggest though that you still update your file to the datastore to serve them back to your clients. You would not serve them from datastore but upload them into memcache (all at startup or 1 by 1 on 1st use) and serve t

[appengine-java] Re: for the problem "Applications are limited to 150000000 bytes of resource files"

2011-03-16 Thread Simon Knott
Hi, The restrictions around your deployed application can be seen at http://code.google.com/appengine/docs/java/runtime.html The maximum size of your deployed WAR has to be 150MB, as far as I'm aware it's not a quota which can be increased. Cheers, Simon -- You received this message because