Skip to content

Latest commit

 

History

History
120 lines (91 loc) · 3.34 KB

README.md

File metadata and controls

120 lines (91 loc) · 3.34 KB

Google Cloud Datastore

Google Cloud Datastore is a fully managed, schemaless, non-relational datastore accessible through Google APIs infrastructure. It provides a rich set of query capabilities, supports atomic transactions, and automatically scales up and down in response to load.

The API is deliberately low-level to map to the underlying Datastore RPC model and provide more flexibility to developers and higher level library implementers.

This repository contains the source code of samples and developer resources related to Google Cloud Datastore:

Samples

JSON

Protobuf

Client libraries

JSON

npm install googleapis
gem install google-api-client
gem install active_datastore

Protobuf

pip install googledatastore
<dependency>
  <groupId>com.google.apis</groupId>
  <artifactId>google-api-services-datastore-protobuf</artifactId>
  <version>v1beta2-rev1-2.1.0</version>
</dependency>

Documentation

Filing Issues

  1. For production issues and support, see Google Cloud Platform Support packages.
  2. For bugs or feature requests, please first look at existing issues.
  3. When applicable, create a new report.
  4. For bugs, detail the steps to reproduce the problem and the affected version number.
  5. For feature requests, articulate the usecase you are trying solve and describe current workaround.
  6. Make sure to annotate the issues with the appropriate labels.

Contributing changes

Licensing