artouiros
artouiros

Reputation: 3987

Key-Value data on GAE Datastore?

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

Answers (1)

Igor Artamonov
Igor Artamonov

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

Related Questions