[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 - the Blobstore is there for that purpose.

Mat.


On Oct 5, 5:38 am, Kb kb.kb.1...@gmail.com wrote:
 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 this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



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 matjagg...@gmail.com

 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 - the Blobstore is there for that purpose.

 Mat.


 On Oct 5, 5:38 am, Kb kb.kb.1...@gmail.com wrote:
  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 this group, send email to
 google-appengine-java@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




-- 
*Felipe Teixeira*
*Coordenador de Desenvolvimento
*
IPNET Soluções
Tel.: 55 21 3553 2717 / 21- 93302489
Rua Visconde de Inhaúma, 134, Sala 615
Centro - RJ - CEP: 20091-007
*http://www.ipnetsolucoes.com.br** *

SCJP - Sun Certified Java Programmer
SCJA - Sun Certified Java Associate
*
*

-- 
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 google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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
felipe.teixe...@ipnetsolucoes.com.br wrote:
 Here,

 http://www.fishbonecloud.com/2010/11/use-objectify-to-store-data-in-g...

 []'s

 2011/10/5 Mat Jaggard matjagg...@gmail.com









  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 - the Blobstore is there for that purpose.

  Mat.

  On Oct 5, 5:38 am, Kb kb.kb.1...@gmail.com wrote:
   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 this group, send email to
  google-appengine-java@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine-java+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.

 --
 *Felipe Teixeira*
 *Coordenador de Desenvolvimento
 *
 IPNET Soluções
 Tel.: 55 21 3553 2717 / 21- 93302489
 Rua Visconde de Inhaúma, 134, Sala 615
 Centro - RJ - CEP: 20091-007
 *http://www.ipnetsolucoes.com.br***

 SCJP - Sun Certified Java Programmer
 SCJA - Sun Certified Java Associate
 *
 *

-- 
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 google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 web visit 
https://groups.google.com/d/msg/google-appengine-java/-/XOft9EjBwOUJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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. Objectify will 
also do all the Memcaching for you automatically.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/jawXNEG0KrgJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.