From owner-cvs-all@FreeBSD.ORG Thu Aug 10 19:35:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E641016A4DD; Thu, 10 Aug 2006 19:35:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A636343D45; Thu, 10 Aug 2006 19:35:17 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7AJZH4J050843; Thu, 10 Aug 2006 19:35:17 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7AJZHwT050842; Thu, 10 Aug 2006 19:35:17 GMT (envelope-from miwi) Message-Id: <200608101935.k7AJZHwT050842@repoman.freebsd.org> From: Martin Wilke Date: Thu, 10 Aug 2006 19:35:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases Makefile ports/databases/py-psycopg2 Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 19:35:18 -0000 miwi 2006-08-10 19:35:17 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/py-psycopg2 Makefile distinfo pkg-descr pkg-plist Log: psycopg2 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. psycopg2 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: http://initd.org/projects/psycopg2 Approved by: krion (mentor) Revision Changes Path 1.534 +1 -0 ports/databases/Makefile 1.1 +59 -0 ports/databases/py-psycopg2/Makefile (new) 1.1 +3 -0 ports/databases/py-psycopg2/distinfo (new) 1.1 +14 -0 ports/databases/py-psycopg2/pkg-descr (new) 1.1 +40 -0 ports/databases/py-psycopg2/pkg-plist (new)