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?
Specifically for the latest .NET AWS SDK (version 1.3.14).
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?
Specifically for the latest .NET AWS SDK (version 1.3.14).
I also asked this question on the Amazon AWS forum and an official AWS employee replied (Norm@AWS) with:
Link (Amazon .NET Development Forum - Is the .NET SDK's AmazonS3 thread safe?).
I create a new instance every thread and it works fine. I think it's safe per-call to be honest, including asynchronous calls.