Is the singleton requirement of a provider is a performance hit ?
Because all the database read/write opertions must be taking place through that singleton. Wouldnt it be an issue with multiple users doing read/write operation in a site like Blogger.
Is the singleton requirement of a provider is a performance hit ? Because all
Share
You should definitly use a connection pool, and limit the max number of connections to say 200 depending on hardware and traffic.
http://ondotnet.com/pub/a/dotnet/2004/02/09/connpool.html
Further tips regarding performance:
http://msdn.microsoft.com/en-us/magazine/cc163854.aspx