[appengine-java] Re: Sort function now throws an exception

2011-03-28 Thread ZeroCool
Hi Stephen, Thank you very much. I modified the code according to your suggestion and it worked. On Mar 28, 8:13 am, Stephen Johnson wrote: > Hi ZeroCool, > I'm not sure if this will help, and I don't know how the TimSort works but > looking at your compare method I&#

[appengine-java] Sort function now throws an exception

2011-03-27 Thread ZeroCool
Hi App Engine Team, I see 100% error rate for a servlet in my application. The function had been working well for months. The lines of code that generate errors are as following: List> memKeys = userDao.getUserKeys(); Map, User> mem = userDao.get(memKeys); List memList = new ArrayList(mem.values(

[appengine-java] I'm getting HardDeadlineExceededError

2010-05-07 Thread ZeroCool
Hi App engine team, I'm getting some HardDeadlineExceededError these few days after the maintenance. The app id is pe-server1 Here is one of the logs: 05-07 04:17PM 28.878 Uncaught exception from servlet com.google.apphosting.runtime.HardDeadlineExceededError: This request (e9b3dcde2f9d1c6a) sta

[appengine-java] Finally, I published my Android/GAE based MMO War Game

2010-04-01 Thread ZeroCool
Big thanks to GAE team and Objectify authors. I couldn't have done it without the help of you guys. If anyone is interested, search 'pocket empires' or 'pe' in Android Market. Now app engine is doing great serving about 3 requests/second with about 700 active users. Looking forward to feedbacks :)

[appengine-java] Re: Objectify-Appengine 2.1 released, supports Partial Indexes

2010-03-26 Thread ZeroCool
This function is really cool. Many thanks for saving my money and time. With GAE and Objectify's help, I will hopefully release my Android/GAE MMO game on Apr,1 On Mar 26, 5:14 am, Duong BaTien wrote: > Hi: > > Congratulation and thank for tremendous efforts from the Objectify Team. > > By the wa

[appengine-java] Re: Does memcache get clean when new version deployed and made to be the default one?

2010-03-20 Thread ZeroCool
Well, if you don't have trillions of data in memcache, you can simply create a Servlet like this: public class Flush extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException { MemcacheService memcache = MemcacheSer

[appengine-java] Re: Objectify-Appengine, a typesafe data persistence tier for App Engine

2010-01-21 Thread ZeroCool
This is so far the best Low-Level API wrapper i can find. Thanks for your great work. Using this library, I've managed to shorten the cold start time of my servlets from 4s to 1.5s, and normal request from 300ms to 150ms So happy not to mess around JDO anymore. :D -- You received this message bec