Tom Grobicki
Member since Mar 14, 2011
- Profile: /members/7987-tom-grobicki.htm
- URL: http://www.avilar.com
- Comments: 5
Recent Blog Comments By Tom Grobicki
-
Explicitly Ending A ColdFusion Session
Posted on Sep 9, 2013 at 2:44 PM
I have used the second technique of setting the max inactive timer. In CF9, I would set a low sessionTimeout and then increase the inactive timer when the person was legitimately logged in. This allowed sessions to quickly die when no longer needed. This doesn't seem to work in CF10. Has the CF10 be... read more »
-
Parsing CSV Data With An Input Stream And A Finite State Machine
Posted on Nov 22, 2011 at 9:42 AM
@Ben, I've tried a number of things, and the best I could come up with was breaking the array of lines down and using a seperate thread for each chunk. I've tried even interacting with GC to encourage collection (I don't like doing this) but I'm not sure CF releases memory until after the request i... read more »
-
Parsing CSV Data With An Input Stream And A Finite State Machine
Posted on Aug 23, 2011 at 6:34 PM
Ben, good post. I'll have to see if it works on my ginormous files. The conditions I'm seeing relate to CF not giving up heap space during request process, so no matter how I read it, I still run out. Sure would be nice to have a Lex/Yacc for CF when it comes to parsing files. While creating FSM by ... read more »