From owner-freebsd-python@FreeBSD.ORG Mon Oct 17 00:56:22 2005 Return-Path: X-Original-To: freebsd-python@freebsd.org Delivered-To: freebsd-python@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BBE516A41F for ; Mon, 17 Oct 2005 00:56:22 +0000 (GMT) (envelope-from hyeshik@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AF6243D46 for ; Mon, 17 Oct 2005 00:56:22 +0000 (GMT) (envelope-from hyeshik@gmail.com) Received: by wproxy.gmail.com with SMTP id 71so398295wra for ; Sun, 16 Oct 2005 17:56:21 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=m/FScw2Jd9xEnx2QZl2qCmNiJI0H3Nv0J2EwIBDOzUzFhqscvkyBXa2REmjSH/9c78l4gkILEC6XlyZx0Zk2G9OHrfZnTHyqXdUs5KGtgRf9+V2/JvdNqXLvhPXFTlC+xtsHKFQSFrUecVrowOIQ6qBQJBcjs5NUP5JGpGnq5Rs= Received: by 10.54.142.18 with SMTP id p18mr1431327wrd; Sun, 16 Oct 2005 17:56:21 -0700 (PDT) Received: by 10.54.121.2 with HTTP; Sun, 16 Oct 2005 17:56:21 -0700 (PDT) Message-ID: <4f0b69dc0510161756j795a0048w5eba483ba3aac8f5@mail.gmail.com> Date: Mon, 17 Oct 2005 09:56:21 +0900 From: Hye-Shik Chang To: Michael Dexter In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: Cc: freebsd-python@freebsd.org Subject: Re: Zope, MySQL and threads on 6.0? X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Oct 2005 00:56:22 -0000 On 10/17/05, Michael Dexter wrote: > > Hello, > > I am about to experiment with Python/Zope and MySQL on FreeBSD 6.0 > and they are all thread intensive. Any news on the threading > situation? Are LinuxThreads still recommended? > Python/Zope are not quite thread intensive. They uses the global interpreter lock for the most operations. And you can utilize all the CPUs for threads on FreeBSD 6.0 thanks to KSE by default. Hye-Shik