If you put code in a file under the modules directory then it will require a restart unless you set the reload parameter to True
In model or controller
mod_name = local_import('module_file', True) will force a reload every time
so restart not needed.
Otherwise nothing gets retained between requests that would force a restart
of the server.
Ron

