Package | Description |
---|---|
com.google.cloud.datastore |
A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications.
|
Modifier and Type | Class and Description |
---|---|
static class |
ReadOption.EventualConsistency
Specifies eventual consistency for reads from Datastore.
|
Modifier and Type | Method and Description |
---|---|
List<Entity> |
Datastore.fetch(Iterable<Key> keys,
ReadOption... options)
Returns a list with a value for each given key (ordered by input).
|
Iterator<Entity> |
Datastore.get(Iterable<Key> keys,
ReadOption... options)
|
Entity |
Datastore.get(Key key,
ReadOption... options)
|
<T> QueryResults<T> |
Datastore.run(Query<T> query,
ReadOption... options)
Submits a
Query and returns its result. |
Copyright © 2019 Google LLC. All rights reserved.