[appengine-java] Re: Server Code vs DataStore

2011-10-05 Thread Gerald Tan
Either using the blobstore api, or urlfetch api is also possible if you can put the data as files up on the web somewhere they can be downloaded from. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the

[appengine-java] Re: Server Code vs DataStore

2011-10-05 Thread Kb
How can i initialize data into DataStore . I have written an app that requires only to get Data with id. On Oct 5, 4:37 pm, Felipe Teixeira wrote: > Here, > > http://www.fishbonecloud.com/2010/11/use-objectify-to-store-data-in-g... > > []'s > > 2011/10/5 Mat Jaggard > > > > > > > > > > > Yes, a

Re: [appengine-java] Re: Server Code vs DataStore

2011-10-05 Thread Felipe Teixeira
Here, http://www.fishbonecloud.com/2010/11/use-objectify-to-store-data-in-google.html []'s 2011/10/5 Mat Jaggard > Yes, although you're still limited by the datastore - you can't save > images bigger than 1MB due to the Blob size limit (I'm not sure if it > would work to spread the data over m

[appengine-java] Re: Server Code vs DataStore

2011-10-05 Thread Mat Jaggard
Yes, although you're still limited by the datastore - you can't save images bigger than 1MB due to the Blob size limit (I'm not sure if it would work to spread the data over more than one Blob, but I think I'd avoid it. I might try to avoid storing image data in the datastore at all to be honest -

[appengine-java] Re: Server Code vs DataStore

2011-10-04 Thread Kb
Thanks . Can i display images with Objectify Framework ? i.e get output data (including image) with .get(key) method etc and then Display to client based on his input . -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to t

[appengine-java] Re: Server Code vs DataStore

2011-10-04 Thread Gerald Tan
It would probably be most efficient to use the Datastore together with the Memcache. If you are new to all these things, I'd definitely recommend using the Objectify framework which completely trivializes the transfer of entities between GWT and GAE without having to use those awful DTOs. Objec