On Mon, 2006-04-03 at 22:18 -0700, Clint Moore wrote: > I tried setting 'transaction-isolation = > READ-COMMITTED' in my.cnf
Are you using InnoDB tables? > What I'm trying to do is relatively simple. My problem is that when I > set values this way, all of the values are cached. How can you tell? Is this based on the HTML you see, or did you put some logging in your code, or what? How far back did you debug it? > They do get changed > in the database and show up after about 10 min or so due to what I > assume is caching. They change immediately in the database? Where do they show up after about 10 minutes? One simple thing that might make a difference is to do this in your code: $Class::DBI::Weaken_Is_Available = 0; That will turn off the live objects index. If there are subtle scoping bugs in your code, the object index can give you strange results. - Perrin ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ Mason-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mason-users

