[appengine-java] Re: Native geospatial support

2010-08-19 Thread fvisticot
/appengine/docs/roadmap.html). I would suggest looking at something like GeoModel in the meantime if you are looking to do bounding box searches:http://code.google.com/apis/maps/articles/geospatial.html On Wed, Aug 11, 2010 at 1:14 AM, fvisticot fvisti...@gmail.com wrote: In Alfreds talk

[appengine-java] Native geospatial support

2010-08-11 Thread fvisticot
In Alfreds talk at Google I/O Next Gen Queries he talks about how geospatial queries will soon be officially supported by the datastore. When this very usefull feature will be available ? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java

[appengine-java] Monitoring the Task Queue

2010-08-10 Thread fvisticot
Is there an API available to monitor the task queue. I would like to be trigged in my code when the queue is empty. A Listener for queue empty would be nice ... -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group,

[appengine-java] Retrieving the n nearest Points(Location) returned by distance

2010-08-10 Thread fvisticot
I have entities with a GeoPt property In input, i have a longitude/latitude (current user location) and i would like to return the n nearest entities. How to solve this pb ? What is the query ? Do i need to use an external framework ? -- You received this message because you are subscribed to

[appengine-java] Re: Provisioning API and JPA

2010-06-03 Thread fvisticot
I have the same kind of performance pb but no answer/solution found actually... It seems that this kind of provisioning feature is not available with JPA... On 3 juin, 13:12, sathish sathish.sha...@gmail.com wrote: Hi my idea is to retrieve users from  domain using java and to store results in

[appengine-java] Re: the support to JPA

2010-06-03 Thread fvisticot
+1 On 2 juin, 18:49, Tao rocka...@gmail.com wrote: Hi everyone in the tuto, why there is so few articles with JPA? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[appengine-java] Cursor support with JPA

2010-05-05 Thread fvisticot
I do not see any documentation regarding cursor support with JPA. Is the following code the correct way to use cursors ? In this sample code, i will retrieve users from 300 to 320 (query.setMaxResults(20); query.setFirstResult(300);) The test is OK with the Local Eclipse GAE plugin @Test

[appengine-java] Geospatial data management with GAE Java

2010-03-17 Thread fvisticot
I know that Geomodel is a solution for python users to manage geospatial information. What is available for GAE Java users in term of Geospatial data management ? What is the best solution ? Is there a native approach provided by GAE Java ? In case no solution is available, what are the

[appengine-java] Re: Gzip encoding used by default ?

2009-09-11 Thread fvisticot
It was just to confirm and to know if it was possible to disable. For me it is OK. On 10 sep, 14:55, Peter Ondruska peter.ondru...@gmail.com wrote: GAE is using gzip encoding. Why would you want to disable? On Sep 10, 10:47 am, fvisticot fvisti...@gmail.com wrote: Can someone confirm

[appengine-java] Cache Control for Mobile apps

2009-09-01 Thread fvisticot
I'm developing a mobile application. For performance purpose, i would like to cache some jsp files I have made a test inserting the following lines in my JSPs: response.setHeader(Cache-Control,max-age=66); response.setHeader(Expires,Tue, 01 Sep 2009 23:15:00 GMT); Each time, i reload the page