Reputation: 3987
I read the documentation of GAE Datastore, but it's a bit.. too hard for me to understand. What I need is just a simple key-value option. Any way to do this? I'd prefer doing this in couple lines of code, because it's simpel as pie. Idk why there isn't an API for doing this.
Upvotes: 0
Views: 132
Reputation: 35951
GAE's datastore is already an Key-Value storage, where value is any Map. This map can have one or more elements.
Upvotes: 4