Click here to Skip to main content
15,922,309 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: IIS website doesn't display Pin
Guffa30-Jun-05 12:29
Guffa30-Jun-05 12:29 
GeneralRe: IIS website doesn't display Pin
Anonymous1-Jul-05 3:14
Anonymous1-Jul-05 3:14 
GeneralRe: IIS website doesn't display Pin
joseph19501-Jul-05 3:20
joseph19501-Jul-05 3:20 
GeneralRe: IIS website doesn't display Pin
Guffa1-Jul-05 3:59
Guffa1-Jul-05 3:59 
GeneralRe: IIS website doesn't display Pin
joseph19501-Jul-05 4:14
joseph19501-Jul-05 4:14 
GeneralRe: IIS website doesn't display Pin
DavidNohejl1-Jul-05 6:54
DavidNohejl1-Jul-05 6:54 
QuestionMemory Issue with Array Session Variable? Pin
Brent Lamborn30-Jun-05 10:02
Brent Lamborn30-Jun-05 10:02 
AnswerRe: Memory Issue with Array Session Variable? Pin
Guffa30-Jun-05 12:55
Guffa30-Jun-05 12:55 
You are wise to be worried about memory issues. It is stuff that are stored for long periods of time in memory that consume resources on the server.

Let's do some calculations on how much memory this will use.

Say that the array structure will contain 9 references that are each 16 bytes. Then add the text data, let's say 30 characters times 9. That adds up to 414 bytes.

This should be multiplied with the number of session objects held in memory. If the session timeout is 20 minutes (standard setting), the number of session objects is at least the number of visitors you have during a 20 minute period. If you have say 100 session objects, the extra memory load will be 41400 bytes.

Not really much data, but you should be careful never the less. If the number of users or the data size for each users increases, the memory load can grow quite a lot. Also, the server will be more sensetive to DoS attacks, as each request to the server can create a new session object, using up some memory every time.

---
b { font-weight: normal; }

AnswerRe: Memory Issue with Array Session Variable? Pin
fakefur3-Jul-05 15:27
fakefur3-Jul-05 15:27 
GeneralColour Format (Please help) Pin
llp00na30-Jun-05 8:55
llp00na30-Jun-05 8:55 
GeneralRe: Colour Format (Please help) Pin
Christian Graus30-Jun-05 17:37
protectorChristian Graus30-Jun-05 17:37 
GeneralRe: Colour Format (Please help) Pin
llp00na30-Jun-05 23:16
llp00na30-Jun-05 23:16 
GeneralRe: Colour Format (Please help) Pin
Christian Graus1-Jul-05 20:07
protectorChristian Graus1-Jul-05 20:07 
GeneralRe: Colour Format (Please help) Pin
Guffa2-Jul-05 6:48
Guffa2-Jul-05 6:48 
GeneralRe: Colour Format (Please help) Pin
Christian Graus3-Jul-05 11:28
protectorChristian Graus3-Jul-05 11:28 
GeneralRe: Colour Format (Please help) Pin
Guffa3-Jul-05 12:11
Guffa3-Jul-05 12:11 
GeneralRe: Colour Format (Please help) Pin
Christian Graus3-Jul-05 12:48
protectorChristian Graus3-Jul-05 12:48 
GeneralRe: Colour Format (Please help) Pin
Guffa3-Jul-05 13:23
Guffa3-Jul-05 13:23 
GeneralRe: Colour Format (Please help) Pin
fakefur3-Jul-05 15:33
fakefur3-Jul-05 15:33 
GeneralRe: Colour Format (Please help) Pin
Guffa4-Jul-05 1:47
Guffa4-Jul-05 1:47 
GeneralPer-user web directories in IIS Pin
Adam Durity30-Jun-05 8:44
Adam Durity30-Jun-05 8:44 
Generaldynamic tree structure table (jscript & xml) Pin
minette30-Jun-05 1:19
minette30-Jun-05 1:19 
Generaljavascript Pin
Anonymous30-Jun-05 0:52
Anonymous30-Jun-05 0:52 
GeneralRe: javascript Pin
Guffa30-Jun-05 2:14
Guffa30-Jun-05 2:14 
GeneralWord 2003 automation problem in web service Pin
hrdegroot29-Jun-05 20:36
hrdegroot29-Jun-05 20:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.