I'm very new to GAE. I'm thinking about using GAE for storing huge
quantities of data, sent and retrieved by a client. What I mean looks
more like a remote file system then like a web app. Do I have to use
https for the communication or is there something better?

How can I store it most efficiently? The vast majority of my data
belong to a single table looking like
CREATE TABLE MyBlobs (id BINARY(32), content BLOB, PRIMARY KEY (id))
where the contents are a couple of kilobytes long, the ids are random-
looking unrelated binary strings, and all queries look like
INSERT INTO MyBlobs VALUES (id1, content1), (id2, content2), (id3,
content3), ....
or
DELETE FROM MyBlobs WHERE id IN (id1, id2, id3, ....)
or
SELECT * FROM MyBlobs WHERE id IN (id1, id2, id3, ....)
There will be no updates and no range searches nor alike.

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

Reply via email to