On Sat, Jun 11, 2011 at 3:23 PM, Tom Bishop <[email protected]> wrote: > Hmmm, yes, you are correct. However, it doesn't seem to be updating > properly. It updates if I change the record via my MySQL admin client but > not if I make a change via my view (ie the MG app). Maybe something to do > with the way MG handles updates?
Reactor saves every column in the object so it's possible it's pulling the old value out and then storing it back in. I don't know if you can tell Reactor to ignore columns? I know you can tell Transfer to ignore columns. We are in the process of moving off Reactor at work - the performance is terrible (far too many CFCs being created / manipulated) and this issue with writing _all_ columns, instead of just changed columns, hurt us for concurrency reasons. We wrote our own very simple ORM in Clojure, wrapped with a generic IBO/bean CFC and we're seeing much better performance. Mind you, we're not using MG so we're not tied to the ORM adapter architecture... -- Sean A Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/ World Singles, LLC. -- http://worldsingles.com/ Railo Technologies, Inc. -- http://www.getrailo.com/ "Perfection is the enemy of the good." -- Gustave Flaubert, French realist novelist (1821-1880) -- Model-Glue Sites: Home Page: http://www.model-glue.com Documentation: http://docs.model-glue.com Bug Tracker: http://bugs.model-glue.com Blog: http://www.model-glue.com/blog You received this message because you are subscribed to the Google Groups "model-glue" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/model-glue?hl=en
