473,387 Members | 1,501 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

RAM based cookies

I'm told that ram based cookies refer to session cookies (which the browser
may still store on disk if it likes). These cookies that are destroyed when
the bowser exits.

If they are "session cookies", and we have disabled the use of session
because we have clustered web servers and do not want to store session state
elsewhere due to performance concerns, does that prohibit the use of these
session cookies altogether? Or is the information still stored client side,
allowing the use of the cookie on our clustered web servers?

Thanks in advance.

Mark
Dec 15 '05 #1
3 1589
Why would performance issues prohibit the use of Session Cookies? The only
thing stored in a Session Cookie is the Session ID. The Session *data* is in
memory on the web server.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Mark" <ma**@nojunkmail.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
I'm told that ram based cookies refer to session cookies (which the
browser may still store on disk if it likes). These cookies that are
destroyed when the bowser exits.

If they are "session cookies", and we have disabled the use of session
because we have clustered web servers and do not want to store session
state elsewhere due to performance concerns, does that prohibit the use of
these session cookies altogether? Or is the information still stored
client side, allowing the use of the cookie on our clustered web servers?

Thanks in advance.

Mark

Dec 15 '05 #2
We do not want to store our session data in SQL Server or a State Server due
to performance implications, both valid session options aside from INPROC.
Performance is a factor because of the need for ASP.NET/IIS to call SQL
Server/StateServer to store/retrieve session information. Inproc won't work
in a cluster because your session technically moves from one server to
another within the cluster, and the INPROC session does not follow.

Going back to my question - If ... we have disabled the use of session
because we have clustered web servers and do not want to store session state
elsewhere due to performance concerns, does that prohibit the use of these
session cookies altogether?

Thanks again.

Mark

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uF**************@tk2msftngp13.phx.gbl...
Why would performance issues prohibit the use of Session Cookies? The only
thing stored in a Session Cookie is the Session ID. The Session *data* is
in memory on the web server.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Mark" <ma**@nojunkmail.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
I'm told that ram based cookies refer to session cookies (which the
browser may still store on disk if it likes). These cookies that are
destroyed when the bowser exits.

If they are "session cookies", and we have disabled the use of session
because we have clustered web servers and do not want to store session
state elsewhere due to performance concerns, does that prohibit the use
of these session cookies altogether? Or is the information still stored
client side, allowing the use of the cookie on our clustered web servers?

Thanks in advance.

Mark


Dec 15 '05 #3
Well, Mark, you've pretty much ruled out all of the alternatives.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Mark" <ma**@nojunkmail.com> wrote in message
news:e0**************@TK2MSFTNGP12.phx.gbl...
We do not want to store our session data in SQL Server or a State Server
due to performance implications, both valid session options aside from
INPROC. Performance is a factor because of the need for ASP.NET/IIS to
call SQL Server/StateServer to store/retrieve session information. Inproc
won't work in a cluster because your session technically moves from one
server to another within the cluster, and the INPROC session does not
follow.

Going back to my question - If ... we have disabled the use of session
because we have clustered web servers and do not want to store session
state elsewhere due to performance concerns, does that prohibit the use of
these session cookies altogether?

Thanks again.

Mark

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uF**************@tk2msftngp13.phx.gbl...
Why would performance issues prohibit the use of Session Cookies? The
only thing stored in a Session Cookie is the Session ID. The Session
*data* is in memory on the web server.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Mark" <ma**@nojunkmail.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
I'm told that ram based cookies refer to session cookies (which the
browser may still store on disk if it likes). These cookies that are
destroyed when the bowser exits.

If they are "session cookies", and we have disabled the use of session
because we have clustered web servers and do not want to store session
state elsewhere due to performance concerns, does that prohibit the use
of these session cookies altogether? Or is the information still stored
client side, allowing the use of the cookie on our clustered web
servers?

Thanks in advance.

Mark



Dec 15 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: deko | last post by:
I have a page that I don't want anyone to be able to link directly to. The page should only be accessed from gatepage.php. I tried this code, but keep getting errors - "header info already sent",...
4
by: Brian Burgess | last post by:
Hi all, Anyone know of any special issues with storing cookies with ASP? I'm trying this with two browsers: One is IE 6.0 with cookies set to 'prompt'. This has been working properly as any...
20
by: Brian Burgess | last post by:
Hi all, Anyone know if this is possible? If so, on which page would the cookie be? .. On the page calling a function defined in the include file? thanks in advance.. -BB
6
by: Mark | last post by:
Hi... I've come across some weird bug with Response.Cookies. Or maybe it will be called "by design" but for the life of me I can't figure out what purpose it would serve. If you're setting a...
11
by: Mark | last post by:
We use cookies to maintain some state information about a users session. They are not file based due to the fact that we don't specify a expiration date. They go away when the session ends. I...
6
by: Stephane | last post by:
Hi, I have a login page where if the user wants his access codes to be saved are set into a cookie. In the logout page, I want to delete those cookies. I tried this and this is not working at...
5
by: Archer | last post by:
I was making a role-based authentication but it does't login with correct password. the HttpContext.Current.User recieved in Global.asax is always null. Request.IsAuthenticated is always false....
1
by: Mark | last post by:
It's my understanding that there are two types of cookies that can be created in an ASP.NET web application: 1. File based cookies that persist on the hard drive 2. RAM based cookies If a...
1
by: schwooba | last post by:
Hello...I have an html form with radio and select controls that I want to email to a user but can't quite grasp the way I should set this up. If someone selects "a" and "milk" I want it to email...
43
by: davidkoree | last post by:
I mean not about cookie. Does it have something to do with operating system or browser plugin? I appreciate any help.
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.