Question

I design an mobile app which can upload photo on GAE. These photos can not be changed, only displayed on other mobiles. Through my application, the picture will be sent only on GAE, and downloaded to the mobile clients. That's all!

I only use GAE for store photos, and datastore for store photo's data string (Like position, age...)

Do you think I have to go on the Cloud Storage (Because I would be locked after a while?), or I can stay on the Blobstore ?

I fear that in the future the Blobstore was deprecated..

Thanks !

OTHER TIPS

Use GCS because:

  • Google is moving away from the blobstore
  • GCS offers more functionality like acl, folders, and more.
  • You can use filenames and a blobstore like serving url for images
  • You can create serving url's for non images
  • GCS is cheap and has a free default bucket

Relative to Google itself, there no good reasons to use blobstore to store files because Cloud Storage is made to do this.

I think Google will deprecate the Blobstore soon...

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top