Hi Anton,
If you want to accept larger files (up to 2Gb), use the blobstore.
http://code.google.com/appengine/docs/python/blobstore/
The datastore is limited to 1Mb per entity, so to store anything
larger you have to shard the data across multiple entities, or use
something else like the blobstore. You could also look at Google
Storage for Developers and see if it suits your needs.
http://code.google.com/apis/storage/
Its hard to give any suggestions for how to work with your data
unless we know what you want to do with it. If you want to process it
in some way:
http://code.google.com/appengine/docs/python/blobstore/blobreaderclass.html
if you just want to serve it:
http://code.google.com/appengine/docs/python/blobstore/overview.html#Serving_a_Blob
Robert
On Mon, Feb 28, 2011 at 18:48, anton savchuk <[email protected]> wrote:
> Hi guys..
> I am new in Google App Engine Community and do not understand some features
> yet..
> I have a few question about video and photo.. As far as I understood I can
> not store files (images, text files, video files.. etc...) on my Google App
> Engine only in DB?
> In this case how I can work with this staff? Please provide me example or
> explain how work with this?
> Thank you alot for yours tome guys!
>
> --
> 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.