Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Azure.Data.Tables.TableClient thread-safe?

We are querying Azure storage tables via Azure.Data.Tables.TableClient from multiple threads. Is it already thread-safe or do we have to make it so? (The documentation neither mentions threads nor concurrency.)

like image 966
Heinrich Ulbricht Avatar asked Oct 19 '25 09:10

Heinrich Ulbricht


1 Answers

Yes, TableClient is thread safe.

More on that topic is here

like image 107
Kalyan Chanumolu-MSFT Avatar answered Oct 21 '25 22:10

Kalyan Chanumolu-MSFT