tags:

views:

7

answers:

1

If CF server is restarted, are all the existing Session and Client variables lost?

A: 

Client variables generally live in a database or registry, and therefore they do persist after server restarts (see here).

Session variables live in RAM and therefore do not persist through a server restart (see here).

Jamie Krug
Thanks very much for your help.
doug777