How will compiling it effect things as we are actively developing and adding new features almost daily?
On Sun, May 13, 2012 at 5:17 PM, Anthony <[email protected]> wrote: > To cut define_table execution time you could try to put migrate=False, >> fake_migrate=False, when you call the DAL since in production the >> model does not change (usually) at runtime. >> > > Yes, definitely turn off migrations -- you can do so for the entire > connection via: > > db = DAL(..., migrate_enabled=False) > > Also, compile the app -- I believe that particularly speeds up the views. > > Anthony > -- -- Regards, Bruce Wade http://ca.linkedin.com/in/brucelwade http://www.wadecybertech.com http://www.fittraineronline.com - Fitness Personal Trainers Online http://www.warplydesigned.com

