RE: [PHP] what PHP really needs

2004-01-24 Thread Marlon Moyer
o account for pricing > changes, stock changes, specials, updates from places like TechData, > etc. If I'm caching the results of my query, I miss those updates, and > have a customer placing an order for a product at the wrong price, out > of stock, etc. [Marlon Moyer] This

RE: [PHP] what PHP really needs

2004-01-24 Thread Marlon Moyer
I don't have a problem with this method. It would be nice though to be able just set 1 application variable and be done with it. > -Original Message- > From: John W. Holmes > > Marlon Moyer wrote: > > > But I think the original question was about a tree

RE: [PHP] what PHP really needs

2004-01-24 Thread Marlon Moyer
set on a CF server or going > to a cached queryset on a db server? It's a wire transaction in any case. [Marlon Moyer] Because most CF servers are installed on the same web server, no wire is required between the web server and cf server. > > > Plus, you have a granular cont

RE: [PHP] what PHP really needs

2004-01-24 Thread Marlon Moyer
Like Hamid Said, if the ColdFusion server has the query already in memory. It doesn't need to send traffic to another server to get the information again. Most systems I've worked on have the db and the web server on different areas of a firewall, so you're going through a lot of excess steps if y

RE: [PHP] what PHP really needs

2004-01-23 Thread Marlon Moyer
nk of as the holy grail, and I would > have to agree with them. [Marlon Moyer] ColdFusion allows you to store variables in several different scopes including Session, Application, and Server. You already know session variables. Application variables only exist within a specified application a