How much is too much asp.net session size? -
i have application on corporate intranet makes use of session state store values between wizard (string of pages/ user controls). i'm measuring size of session , navigating around make sure things dotn out of hand.
at worst, can size 900 bytes.
is much?
i know depends on other factors such number of users , amount of memory in server. lets set parameters around these... server allocated 1 gig of ram asp.net (the rest allocated os , other items). have @ 10 users on system concurrently.
thanks help
personally i'd 900 bytes nothing. lets it's 1kb -> means 1gig of ram should able store 1000k of sessions (not including else).
personally think shouldn't @ raw numbers. what's important is: stuff in session meant in session. should put information in session that's useful when user browsing website , can discarded if user leaves website.
as long don't store big data objects in session, should fine.
Comments
Post a Comment