Datastore
App Engine Datastore is a schemaless NoSQL datastore providing robust, scalable storage for your web application, with the following features:
•No planned downtime
•Atomic transactions
•High availability of reads and writes
•Strong consistency for reads and ancestor queries
•Eventual consistency for all other queries
The Datastore holds data objects known as entities. An entity has one or more properties, named values of one of several supported data types: string, integer, or a reference to another entity. Each entity is identified by its kind, which categorizes the entity for the purpose of queries, and a key that uniquely identifies it within its kind. The Datastore can execute multiple operations in a single transaction. By definition, a transaction cannot succeed unless every one of its operations succeeds; if any of the operations fails, the transaction is automatically rolled back. This is especially useful for distributed web applications, where multiple users may be accessing or manipulating the same data at the same time