LinkToSql - Performance
-
7. března 2012 5:01
Hi All
I was hoping someone could help me with LinkToSql question. I have small 2 tier application (about 3000 record) which connects over a vpn to a sql server at the main office. The issue is application clients in the head office open virtually instantly however the remote application takes about 40-50 seconds to open. Once the application is open it performs quite well with only half a second notible difference in remote application compared to the local installs.
The VPN appears to have good ping rates and we can move files with reasonable speed for one location to the other so I had ruled out a network issue. My Question is does linq do some form of local caching or something which may cause this lag in the application starting?
Thanks in advance
Andrew
- Upravený Andrew Wellins 7. března 2012 5:07
Všechny reakce
-
7. března 2012 17:16
Hi Andrew;
Linq to SQL only connects to the SQL server once a DataContext has been instantiated and a Linq query has been executed. Linq to SQL works in a disconnected framework model and uses a well used ADO.Net framework to connect to the server. So it may be something else causing the issue.
Fernando (MCSD)
If a post answers your question, please click "Mark As Answer" on that post and "Mark as Helpful".- Označen jako odpověď Andrew Wellins 9. března 2012 1:20
-
9. března 2012 1:22
Thanks Fernando
I'll look else where thanks for your reply
- Upravený Andrew Wellins 9. března 2012 1:23