- Learning Google BigQuery
- Thirukkumaran Haridass Eric Brown
- 206字
- 2021-07-02 21:24:00
Cloud Datastore
Cloud Datastore is a NoSQL document database used to store key-value pair objects; they can be queried using an SQL-like language called GQL. Cloud Datastore provides options to index certain properties of the object stored. Applications can create entities of any kind dynamically and add data to those entities. GQL is a language using which developers can write queries to query the datastore by kind and property values. To get started, click on the top left menu () and choose Datastore under the Storage category. Create an entity as shown in the first screenshot.
Use Google Cloud Datastore for application logging and versioning of objects and objects that are bound to change their structure over the time. Cloud Datastore provides the option to maintain different sets of properties for the same kind of object.
The following screenshot shows how to create an entity of kind named EmployeeDetails, define its properties, and add values to the properties. It is similar to defining a class in object-oriented programming, instantiating it, and initializing its field values and properties:

To explore the list of entities of the same kind, you can use GQL to query the objects based on their property values, as shown in following screenshot:

- Unity 2020 By Example
- WebAssembly實(shí)戰(zhàn)
- Java EE框架整合開發(fā)入門到實(shí)戰(zhàn):Spring+Spring MVC+MyBatis(微課版)
- Mastering Ember.js
- Visual FoxPro 程序設(shè)計(jì)
- Python高效開發(fā)實(shí)戰(zhàn):Django、Tornado、Flask、Twisted(第2版)
- C語言程序設(shè)計(jì)教程
- Mastering C++ Multithreading
- Java并發(fā)編程之美
- Elasticsearch Essentials
- jQuery for Designers Beginner's Guide Second Edition
- PHP 8從入門到精通(視頻教學(xué)版)
- Head First Kotlin程序設(shè)計(jì)
- Learn Linux Quickly
- Programming MapReduce with Scalding