How do i store data which is more than 10 MB in google app engine? put() from datastore allow开发者_运维百科s only 1 MB. do I need to slice my data into chunks of 1MB each and store ? or is there any other way ?
Using the datastore, yes, you'll need to use smaller chunks. You could also use the Blobstore API.
精彩评论