Click here to Skip to main content
15,885,244 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
To hold some data to use in all pages we can use sessions.If we use sessions is there any performance issue.For my web application there may be more than 1000 users at a time.Is there any other way to hold and pass data than session ?
Posted

1 solution

plenty: Performance can be effected in several ways for different techniques for any situation. There is no one-size-fits-all solution

Session is held at the server.

Cookies are stores on the users machine (including sessionid for eg)[^]

The WebCache object can be used. It isn't tied to a specific session. You have more control as to when to refresh and clear the cache[^]


You can also store session items in the DB. There is a good article on some of these techniques and more, right here on CodeProjects.com

Understanding Session Management Techniques in ASP.NET[^]
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900