vote up 1 vote down star

Optimally I would like linq to use X database connections instead of 1 to speed things up.

The only way now is to open X connections, and create X databasecontexts, and associate them. It would be easier if somehow I could tell linq to use X connections.

Is this possible? Or is there another way to speed up database queries?

thanks

edit: changed the title since it was misleading (according to one of the answerers, and I agree)

flag

76% accept rate

1 Answer

vote up 3 vote down check

I think the title is misleading. Connection Pooling: You don't need to do that. Linq2SQL uses an ADO.NET SqlConnection under the hood which is connection pooled by default.

What you are trying to accomplish seems to me like trying to query the database in parallel. This can only beneficial if you are trying to execute different queries or a querie that can be very well parallelized. Such a query also should not heavily rely on locks/transaction. Slow queries generally tend not to be of that kind.

Loading the top 50% of the same query with one connection and the bottom 50% with another won't bring you any benefits, the Database Server is the bottleneck there.

There are a lot of other reasons why LinqToSql SQL queries perform bad. One of them is known as the Select N+1 problem. Ayende has a great post about fighting it in NHibernate, equivalent principles apply in L2S.

If all of the above does not help you, you might want to take a look at SQL Server MARS that allows you to query a database in parallel on one connection.

link|flag
I guess you nailed it Johannes, I'll remove my answer. – ssg Nov 6 at 19:57
You are right that the title is misleading... I'm actually doing a lot of tiny inserts totally unrelated to one another. I was hoping linq could open multiple connections and this way speed it up. From what I read MSSQL is optimized for parallel queries – reinier Nov 6 at 20:02
1  
ok that's quite a game changer :-) When it's about inserts, MARS won't help you. Are those inserts on different tables or the same? If they are on the same, it might be faster to bulk load them via SQLBulkCopy. You lose the ability to query for SCOPE_IDENTIY() though. – Johannes Rudolph Nov 6 at 21:19
thanks for that last tip! – reinier Nov 7 at 13:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.