Can the Blobstore in GWT/GAE be used as a database? Or is a new Blobstore created each time I launch the application? I would like to store information without losing it when the application is closed. But I can't seem to find a way to name a Blobstore and then reference it by its ID. Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If all you want to do is store a string I'd still suggest using the datastore. Here's the complete python source to an App Engine app that retrieves, modifies, and stores some text in the datastore:
If you're working in Java it would be more verbose, but similar. |
|||
|