Date: Thu, 18 Nov 2021 11:59:13 +0000 From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 259914] [NEW PORT] databases/py-psycopg3 Modern implementation of a PostgreSQL adaptor for Python Message-ID: <bug-259914-7788@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D259914 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=3D229572&action= =3Dedit Modern implementation of a PostgreSQL adaptor for Python psycopg3 is a PostgreSQL database adapter for the Python programming langua= ge. 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 design= ed for heavily multi-threaded applications that create and destroy lots of cur= sors 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 nee= d 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 --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-259914-7788>