Is the Amazon .NET AWS SDK's AmazonS3 thread safe?

前端 未结 2 1013
逝去的感伤
逝去的感伤 2020-12-06 04:37

Is the Amazon .NET AWS SDK\'s AmazonS3 thread safe or should I be creating a new instance of AmazonS3 per request in a multi-threaded system?

相关标签:
2条回答
  • 2020-12-06 05:03

    I also asked this question on the Amazon AWS forum and an official AWS employee replied (Norm@AWS) with:

    The .NET SDK is thread safe so keeping an instance of any of the clients like AmazonS3 around and reusing them is fine.

    Norm

    Link (Amazon .NET Development Forum - Is the .NET SDK's AmazonS3 thread safe?).

    0 讨论(0)
  • 2020-12-06 05:18

    I create a new instance every thread and it works fine. I think it's safe per-call to be honest, including asynchronous calls.

    0 讨论(0)
提交回复
热议问题