I am saving some html in application scope & reading with <cflock readonly.
Will it be a problem if more than 5 requests are made per second?
Does deadlocks occurs with readonly-cflock?
Thanks
Oguz.Demirkapi - 27 Mar 2008 05:14 GMT
While creating/changing application scope variables in a lock, I think there
must be an exclusive lock. You must be careful not to set any shared variable
such as application inside a read only cflock tag.
I also would suggest to check the usage of Application.cfc and
onApplicationStart method. You can set application default variables and
constants in onApplicationStart method in your Application.cfc.