com.google.cloud.datastore.Datastore 线程安全吗?

Is com.google.cloud.datastore.Datastore thread safe?

com.google.cloud.datastore.Datastore线程安全吗?更具体地说,Datastore 的一个实例是否可以由多个线程共享,并且它们可以同时将 from/write 读取到 Cloud Datastore?

换句话说,如果我正在构建一个访问云数据存储的 Web 应用程序,我需要 Datastore 对象的单个实例还是 Datastore 对象的池(就像JDBC 连接到 RDBMS)?

有问题的 API 是 http://googlecloudplatform.github.io/google-cloud-java/0.3.0/apidocs/

是的,com.google.cloud.datastore.Datastore 是线程安全的。我们会在文档中明确说明。