Return-Path: Delivered-To: apmail-perl-modperl-archive@www.apache.org Received: (qmail 53126 invoked from network); 12 Aug 2005 17:04:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 12 Aug 2005 17:04:42 -0000 Received: (qmail 43388 invoked by uid 500); 12 Aug 2005 17:04:32 -0000 Delivered-To: apmail-perl-modperl-archive@perl.apache.org Received: (qmail 43375 invoked by uid 500); 12 Aug 2005 17:04:32 -0000 Mailing-List: contact modperl-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list modperl@perl.apache.org Received: (qmail 43362 invoked by uid 99); 12 Aug 2005 17:04:31 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Aug 2005 10:04:31 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of boysenberry@humaniteque.com designates 12.164.26.131 as permitted sender) Received: from [12.164.26.131] (HELO static.habitatlife.com) (12.164.26.131) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Aug 2005 10:04:53 -0700 Received: from c-67-186-78-94.hsd1.il.comcast.net ([67.186.78.94] helo=[192.168.0.102]) by static.habitatlife.com with esmtpsa (TLSv1:RC4-SHA:128) (Exim 4.51) id 1E3cxJ-00015p-GZ for modperl@perl.apache.org; Fri, 12 Aug 2005 13:04:29 -0400 Mime-Version: 1.0 (Apple Message framework v622) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; format=flowed To: mod_perl From: Boysenberry Payne Subject: Quick and Easy scoping question Date: Fri, 12 Aug 2005 12:04:34 -0500 X-Mailer: Apple Mail (2.622) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - static.habitatlife.com X-AntiAbuse: Original Domain - perl.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - humaniteque.com X-Source: X-Source-Args: X-Source-Dir: X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I a module written in an object orient syntax that does this: sub new { my $class = shift; my $this = {}; bless( $this, $class ); $this->_init( @_ ); return $this; } Is $this considered Global (i.e. am I going to run into the scoping issues of $this->{data} persisting for multiple users?) Boysenberry boysenberrys.com | habitatlife.com | selfgnosis.com