Azure CloudTable class 在 Java 中是线程安全的吗?
Is the Azure CloudTable class thread-safe in Java?
就像用于 Azure 存储的 .NET SDK 一样,Java 版本有一个 CloudTable class 用于针对特定 Azure Table 执行操作。
虽然看起来是 .NET 实现 isn't thread safe,但我找不到 Java 的任何明确答案。那么Java版本线程安全不安全?
我想您已经看到了对您在 github https://github.com/Azure/azure-storage-java/issues/38 上创建的问题的回复。为以后遇到此问题的人重新发布答案。
We do not make any thread-safety guarantees about our libraries. We also do not test them for thread-safety. Methods that are currently thread-safe may be thread-unsafe in future versions. Thank you for pointing this out to us. We will look into updating our documentation.
Azure 的 v12 API is said to be threadsafe.
就像用于 Azure 存储的 .NET SDK 一样,Java 版本有一个 CloudTable class 用于针对特定 Azure Table 执行操作。
虽然看起来是 .NET 实现 isn't thread safe,但我找不到 Java 的任何明确答案。那么Java版本线程安全不安全?
我想您已经看到了对您在 github https://github.com/Azure/azure-storage-java/issues/38 上创建的问题的回复。为以后遇到此问题的人重新发布答案。
We do not make any thread-safety guarantees about our libraries. We also do not test them for thread-safety. Methods that are currently thread-safe may be thread-unsafe in future versions. Thank you for pointing this out to us. We will look into updating our documentation.
Azure 的 v12 API is said to be threadsafe.