I'm using the standard connection pool via engine:
engine = sqlalchemy.create_engine('oracle://scott:tiger@foo', ...)
conn1 = engine.connect()
conn2 = engine.connect()
I want to dispose and recreate the pool in a web environment.
All new threads that connect should get a new connection from the pool. All old threads that are using an old connection may continue to do so until they close these connections out.
From what I understand, this is as simple as executing `engine.dispose()`.
Is that correct?
Thanks and best regards,
Matthew