data table class is multi-threaded, but is it stable?

  • Thread starter Thread starter Steve Stover
  • Start date Start date
S

Steve Stover

I want to use the caching API in .net to store data. The data would be
stored in a data table class that has approx. 10 columns and 71 rows. What
I need to know is this: According to Microsoft's MSDN the data table class
is multi-threaded. I trust that it is but I am still leery about its
performance under heavy use. In the scenario above can the data table
handle 100 - 600 users at one time accessing it? Let me know if I need
further info to clarify.
 
Hi Steve,

Actually, this is what the docs say:

This type is safe for multithreaded read operations. You must synchronize
any write operations.
 
Thanks.

Miha Markic said:
Hi Steve,

Actually, this is what the docs say:

This type is safe for multithreaded read operations. You must synchronize
any write operations.
 
Back
Top