It sounds like the blobstore might be a good match for your needs. To move a blob from the bobstore to another server you control, I would write something on the other server to download the blob. Otherwise you would need to send it piece-by-piece to the other server, which would be much more complicated.
The nice thing about the bobstore / datastore / memcache / urlfetch on app engine is that you really don't need to worry about the low-level implementation; Google has handled it for you. Blobs in the Blobstore will look like the file you uploaded. Robert On Tue, Mar 1, 2011 at 11:31, anton savchuk <[email protected]> wrote: > I have read about blobstore and it sounds terrific to me :) > But regard to blobstore.. if for example I want to get videos and photos and > move on other servers how can I do it? > As far as I understood blobstore does not store physical file.. Right? > My firstly task does not provide store users files and videos it is > like additional feature.. in this case I probably do not need Google > Storage. Do I? > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
