ли это сильно нагружать бд? имею ввиду что не создастся ли новое соединения, думаю что из пула должно браться
Соединение будет браться из пула
https://docs.sqlalchemy.org/en/20/core/connections.html#basic-usage the Engine.connect() method returns a Connection object, and by using it in a Python context manager (e.g. the with: statement) the Connection.close() method is automatically invoked at the end of the block. The Connection, is a proxy object for an actual DBAPI connection. The DBAPI connection is retrieved from the connection pool at the point at which Connection is created.
Обсуждают сегодня