com.google.cloud.datastore.Datastore
线程是否安全?更具体地说,一个Datastore
实例可以由多个线程共享,并且它们是否可以同时读取/写入云数据存储区?
换句话说,如果我构建一个访问Cloud Datastore的Web应用程序,我是否需要Datastore
对象的单个实例或Datastore
个对象的池(就像JDBC连接到RDBMS)?
有问题的API是http://googlecloudplatform.github.io/google-cloud-java/0.3.0/apidocs/。
答案 0 :(得分:2)
是的,com.google.cloud.datastore.Datastore
是线程安全的。我们将使文档明确。