Session State Sql with webDev.webserver SLOW

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

Why is the Session state SQl server so Slow when debugging with VS2010 and
webdev.webserver20 ?

Works ok on IIs 7 but in development takes 1+minute to complete the render,
even after the the asp.net code has finished , still sits there waiting....

If i uses Inproc works ok, but then the webDev server keeps losing the
session state cookie, so keeps generating news ones.

ASP.NET and VS2010 and Session state WHAT A NIGHTMARE, WASTING SO MUCH TIME
ON THIS NOW. Cant test,

Any help would be appreciated
 
Martin said:
Why is the Session state SQl server so Slow when debugging with
VS2010 and webdev.webserver20 ?

Works ok on IIs 7 but in development takes 1+minute to complete the
render, even after the the asp.net code has finished , still sits
there waiting....

If i uses Inproc works ok, but then the webDev server keeps losing
the session state cookie, so keeps generating news ones.

ASP.NET and VS2010 and Session state WHAT A NIGHTMARE, WASTING SO
MUCH TIME ON THIS NOW. Cant test,

Any help would be appreciated

Have you tried the ASP.NET Session State service as a third alternative?
 
Martin said:
Why is the Session state SQl server so Slow when debugging with VS2010 and
webdev.webserver20 ?

Works ok on IIs 7 but in development takes 1+minute to complete the render,
even after the the asp.net code has finished , still sits there waiting....

If i uses Inproc works ok, but then the webDev server keeps losing the
session state cookie, so keeps generating news ones.

ASP.NET and VS2010 and Session state WHAT A NIGHTMARE, WASTING SO MUCH TIME
ON THIS NOW. Cant test,

Any help would be appreciated

SQL Server session state makes things 40% slower. Maybe, you can try to
use the Session State Service.
 
Back
Top