What are the implications/consequences of the AjaxPro HttpSessionStateRequirement?

647 Views Asked by At

I know the different options (None, ReadWrite, Read) and what they mean, but are there any other implications? Does ReadWrite take a performance hit compared to None, for example? Are there other consequences, or things to keep in mind?

1

There are 1 best solutions below

0
On BEST ANSWER

I emailed Michael Schwarz, who wrote AjaxPro, and got the following reply:

Well, the main reason for adding this attribute was to get rid of blocking http requests. If you are accessing session state variables in two requests the 2nd one will need to wait until the first one is finished. Since I have added this attribute value I always use HttpSessionStateRequirement.None.

For more details see: