Ghyath Serhal
Ghyath Serhal

Reputation: 7632

Large application using Entity framework and WCF

We are developing a large ASP.NET application. The Application uses the below:

Mainly we have two critical problems:

These problems makes the application very slow and sometimes does not respond, which force us to restart the wcf and sql services.

The application is hosted on a windows server 2008 environment that has 4 GB RAM.

Upvotes: 3

Views: 1038

Answers (1)

oleksii
oleksii

Reputation: 35905

Hopefully this shall get you started:

  1. Check the WCF diagnostics, if there is any exception or unexpected behaviour.
  2. Then use some memory profiling tools to see which objects stay in the WCF host memory.
  3. Verify that connection to the MS SQL is closed and disposed properly on a per request manner
  4. Check if you are doing any data caching and verify that there is no old data left.
  5. Profile MS SQL.

Upvotes: 3

Related Questions