I am writing some common functions to use in pl/Python in PostgreSQL.
The python modules are loaded into PL/Python functions by:
from sys import path
path.append('/PythonLibrary/PostgreSQL')
from Module import funcA, funcB, etc
This works OK until you change the module source code. The server has the code cached, or in a compiled state, but it fails to detect changes and reload.
How is Postgres handling this, and how can I get changes detected and handled appropriately.
Thanks.