Skip to content

morristech/google-cloud-datastore

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Protobuf

pip install googledatastore
<dependency>
  <groupId>com.google.apis</groupId>
  <artifactId>google-api-services-datastore-protobuf</artifactId>
  <version>v1beta1-rev1-1.0.0-SNAPSHOT</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