I have an app that stores XML and HTML files, and i'm trying to decide
on the Blobstore vs. Datastore

Pro for Blobstore:  it is possible for the HTML files to exceed 1 MB
(although I have ready the average size of an HTML file is ~25 KB)

Pro for Datastore:  The blobstore allows for insert / deletes only, no
updates. So I would have to delete blobs and insert new blobs every
time a user saves an existing file, which could happen a few time a
minute (similar to editing a file in Google docs)

>From a technical perspective, are there any repercussions to:
a) serving HTML files from the datastore vs.
b) serving HTML files fro the blobstore, but constantly having to add
and delete blobs?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to