[Bug 259914] [NEW PORT] databases/py-psycopg3 Modern implementation of a PostgreSQL adaptor for Python
Date: Thu, 18 Nov 2021 11:59:13 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259914 Bug ID: 259914 Summary: [NEW PORT] databases/py-psycopg3 Modern implementation of a PostgreSQL adaptor for Python Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: ports-bugs@FreeBSD.org Reporter: sunil.nimmagadda@fudosecurity.com Created attachment 229572 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=229572&action=edit Modern implementation of a PostgreSQL adaptor for Python psycopg3 is a PostgreSQL database adapter for the Python programming language. It was written from scratch with the aim of being small, fast and stable. It supports the full Python DBAPI-2.0 and is thread safe. psycopg3 is different from the other database adapter because it was designed for heavily multi-threaded applications that create and destroy lots of cursors and make a conspicuous number of concurrent INSERTs or UPDATEs. Every open Python connection keeps a pool of real (UNIX or TCP/IP) connections to the database. Every time a new cursor is created, a new connection does not need to be opened; instead one of the unused connections from the pool is used. That makes psycopg very fast in typical client-server applications that create a servicing thread every time a client request arrives. WWW: https://www.psycopg.org/ WWW: https://github.com/psycopg/psycopg -- You are receiving this mail because: You are the assignee for the bug.