[appengine-java] Equality operator with range uery not working properly

2010-03-11 Thread Abhi
Hi All, I am facing problem with a query when i am adding filter with equality operator (== set) and providing range, it gives all the records. Please help me. Thanks, Abhi -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] Re: Caching pages.

2010-02-13 Thread abhi
@ bimbo jones - Thanx , thats a good idea, i guess i found out how to use memcache for jsps , jsp has a buffer , so i can save it to memcache :) @Brain - The server should cache JSP's for you- what do you mean by that? Do you mean browser cache? -- You received this message because you are

[appengine-java] Caching pages.

2010-02-11 Thread abhi
Caching objects in App engine is easy Cache cache; Cache cache ; try { cache = CacheManager.getInstance().getCacheFactory().createCache(Collections.emptyMap()); } catch (CacheException e) { // ... } String key; // ... int value;

[appengine-java] Re: JDO Query limit? 1000?

2009-12-17 Thread abhi
That will work only on local mode , if you use it on server you will get . ... threw an unexpected exception: java.lang.IllegalArgumentException: offset may not be above 1000 .. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

[appengine-java] Re: Lazy Loading, Spring MVC and PersistenceManager Closing

2009-12-14 Thread abhi
Hey , why do you want to close the persistance manager here, you are not saving or updating any entities. You should use a static PMF class to get the entity manager und you feed class should have something like this ... class FEED { private static PersistenceManager pm; // this fetches the