views:

111

answers:

3

Which one should I use? What are the pros and cons to using each? The images will all be less than 100 kilobytes. 3 kilobyte thumbnails of each image will be retrieved quite often, like 2 to 5 on each page view on average.

Which would be better to use, considering latency in retrieving the images, cost in CPU time of retrieving the images, and any other factors?

+1  A: 

If your blob is comfortably and consistently under the 1MB entity size limit, there's no advantage in using the blobstore.

Drew Sears
+1  A: 

The BlobStore was designed to store and serve binary files.

The datastore was not.

It's really quite that simple.

Oh and if you ever want to crop images and such Google's images library works very well together with the blobstore.

Swizec Teller
A: 

If it's profile picks, I don't think you should use either service. Gravatar provides a profile pic service for free and it won't affect your quotas. Just make a url composed of a checksummed version of the users email address.

TokenMacGuy