Reputation: 6474
I have a scenario where a thesaurus has to be created. Instead of storing the thesaurus in datastore and accessing it everytime over the web, I am thinking of storing it in embdedded database like javadb, and the user can access the thesaurus through my web app while other sections of the same web app store data in google data store.
Is something like this doable? Are there any hurdles/pitfalls that I should be aware of, to implement this successfully? Or will I have to stick to google data store only?
Upvotes: 2
Views: 201
Reputation: 101149
No, this probably isn't possible. You can't write to the filesystem on App Engine, it might be possible if you're happy with the database being read-only, and the library you use to access it doesn't rely on native code.
Upvotes: 1