> -----Original Message----- > From: Johnny Le [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 21, 2005 10:07 AM > To: CF-Talk > Subject: Re: terms: shared scope variables vs. persistent scope variables? > > So, Sean, if they are not "persistent", then all scopes (session, > application, server, cookie) are "shared" scope? So "shared" here means > sharing among requests and not among users?
"Shared" is another computer science term that generally means "using the same memory" or more generally, address space. ;^) So, in our case (and trying to use correct terminology), we might call Server, Application, and Session "Shared" scopes as they share RAM space. Client variables and cookies can be considered "Persistent" scopes since they will survive a system recycle. But "Shared" (like, in my opinion, "persistent") really needs a qualifier. Server, Application and Session variables are sharing memory (you need to worry about RAM usage with them). Server is shared across all requests on a single CF instance. Application and Session are shared across all member application requests (but not other applications). Jim Davis ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210096 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

