Re: Session vs. Cookies

2001-08-15 Thread freddy
Just for information purposes we use session variables exclusively to manage our personalization sessions and have not yet gone up over 15% of memory usage. There are a minimum of actual variables used in a session (an array of link values, name, breed and breed image, plus a few flag fields). W

RE: Session vs. Cookies

2001-08-15 Thread Bill Killillay
If your going to be doing a site that has a lot of load you need to look at either Client vars, or cookies. If it's going to be scaling and going into a clustered environment you can't use session var's and have them stick. In that case you will need to use Client var's and a DB. I personally n