For atomic operations (inserts, updates, reads) performance will be similar.
For more complex queries it depends on the nature of the query.
J
Should I use Google Cloud SQL or the App Engine Datastore?
- This depends on the requirements of the application. Datastore provides NoSQL key-value storage that is highly scalable, but does not support the complex queries offered by a SQL database. Cloud SQL supports complex queries and ACID transactions, but this means the database acts as a ‘fixed pipe’ and performance is less scalable. Many applications use both types of storage.