Why is coldfusion not storing sessions in the database
I have set coldfusion to store sessions in the database, but the table is blank. I have the datasource configured to retrieve CLOB. I'm开发者_如何学运维 using CF7, MySQL Connector. Why isn't it working? Thanks!
You have most likely set it to store CLIENT variables in the database. Session variables are always stored in memory. Client variables can be stored in the registry (on Windows), a cookie on the client machine, or in a database.
EDIT:
Link to Documentation for ColdFusion 7 Client Variables
精彩评论