Session object question

  • Thread starter Thread starter slavyan
  • Start date Start date
S

slavyan

I heard that using inproc session is not very good idea because it consumes
a lot of memory if there are many users using web at the same time. Is is
true? If so, is there another good (and easy) way to store temp. data
instead of using session?

Thanks
 
i would never use inproc on any large, active site. besides being a memory
hog, its lost on asp.net recycles. try the sqlserver session manager.

-- bruce (sqlwork.com)

| I heard that using inproc session is not very good idea because it
consumes
| a lot of memory if there are many users using web at the same time. Is is
| true? If so, is there another good (and easy) way to store temp. data
| instead of using session?
|
| Thanks
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top