Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #100131

Re: Understanding Python from a PHP coder's perspective

Path csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail
From Chris Angelico <rosuav@gmail.com>
Newsgroups comp.lang.python
Subject Re: Understanding Python from a PHP coder's perspective
Date Tue, 8 Dec 2015 14:26:57 +1100
Lines 16
Message-ID <mailman.46.1449545220.12405.python-list@python.org> (permalink)
References <f39f97f5-d7a1-4d7c-a7ac-527c2ffff76b@googlegroups.com> <44d92f52-4f92-470d-a724-102a14d185de@googlegroups.com> <mailman.35.1449525620.12405.python-list@python.org> <3e30fc58-4460-40a6-a639-22cd4d406f0b@googlegroups.com> <mailman.38.1449529801.12405.python-list@python.org> <ecbda13f-97a1-4722-8efd-e624c16b70f9@googlegroups.com>
Mime-Version 1.0
Content-Type text/plain; charset=UTF-8
Content-Transfer-Encoding quoted-printable
X-Trace news.uni-berlin.de botR8dSiT5db4dfbhykkJQjxqcq+BKhhvJkomWm/IQoA==
Return-Path <rosuav@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.002
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'received:209.85.223': 0.03; 'subject:Python': 0.05; 'cc:addr:python-list': 0.09; 'python': 0.10; 'ah,': 0.16; 'caches': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'storing': 0.16; 'stuff.': 0.16; 'subject:perspective': 0.16; 'wrote:': 0.16; 'memory': 0.17; 'basically': 0.18; 'variable': 0.18; 'load': 0.20; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'seems': 0.23; 'dec': 0.23; 'header:In-Reply-To:1': 0.24; '(which': 0.26; 'message- id:@mail.gmail.com': 0.27; 'objects': 0.29; 'guess': 0.31; 'maybe': 0.33; 'tue,': 0.34; 'file': 0.34; 'received:google.com': 0.35; 'could': 0.35; 'but': 0.36; 'instead': 0.36; 'received:209.85': 0.36; '(i.e.': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'being': 0.37; 'received:209': 0.38; 'anything': 0.38; 'application': 0.39; 'subject:from': 0.39; 'hang': 0.60; 'connection,': 0.72; 'chrisa': 0.84; 'to:none': 0.91
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type:content-transfer-encoding; bh=ELq+Q9hIxi6/8xg3pwsTQlSdVUvzMCiokzgi20zNL+Y=; b=rb3kjM5fNsGrcS94G1yt5zOY6pxI5+sIHpbccFtvVTVpoHKz5XmXFl74KJkiCcInsG HsxyIHxXwWaBdFpjFGAeX6DPVdpF/ryw320ZpgNmE7U8B9PcZQzTP8g28YxEBLdeqDJF d/tvMyQOIVbm+Xff94SQLzIp0ZusZImDKTk8AD+rJ0UeoD+PPwjBMZUuNxx0wYGPuIOq RGG1Si8V+gmQalIt7mThb8TUIB9+PCDlzN1NdPVnQbC5vBfIA9TsH6ReqDQJm/Tn4yDj 4beEdEocsTz2LLgJH08U2mNTOGSp5fpj3OjWRHfU6zcdv8EI2lWJbxMEq1x8F909LYej PHsA==
X-Received by 10.107.16.84 with SMTP id y81mr1660988ioi.19.1449545217657; Mon, 07 Dec 2015 19:26:57 -0800 (PST)
In-Reply-To <ecbda13f-97a1-4722-8efd-e624c16b70f9@googlegroups.com>
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.20+
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Xref csiph.com comp.lang.python:100131

Show key headers only | View raw


On Tue, Dec 8, 2015 at 12:00 PM,  <villascape@gmail.com> wrote:
> Ah, I was confused that process state somehow allowed Python to support per-connection state without using sessions (which lead me to ask about websockets).  I guess Python could do it without storing the session ID in a file or database and instead in process state (i.e. application memory, right?), but the effect seems basically the same. Without being per-connection, what is the value of process state?
>

Caches and stuff. For example, you might establish a database
connection, and then hang onto it for all queries; or maybe you load
up a bunch of user objects and keep them in memory for when you need
them again. Anything that you store in a global (module-level)
variable will hang around.

ChrisA

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Understanding Python from a PHP coder's perspective villascape@gmail.com - 2015-12-07 13:07 -0800
  Re: Understanding Python from a PHP coder's perspective villascape@gmail.com - 2015-12-07 13:21 -0800
    Re: Understanding Python from a PHP coder's perspective Chris Angelico <rosuav@gmail.com> - 2015-12-08 09:00 +1100
      Re: Understanding Python from a PHP coder's perspective villascape@gmail.com - 2015-12-07 14:27 -0800
        Re: Understanding Python from a PHP coder's perspective Chris Angelico <rosuav@gmail.com> - 2015-12-08 10:09 +1100
          Re: Understanding Python from a PHP coder's perspective villascape@gmail.com - 2015-12-07 17:00 -0800
            Re: Understanding Python from a PHP coder's perspective Chris Angelico <rosuav@gmail.com> - 2015-12-08 14:26 +1100
        Re: Understanding Python from a PHP coder's perspective Ian Kelly <ian.g.kelly@gmail.com> - 2015-12-07 16:10 -0700
        Re: Understanding Python from a PHP coder's perspective Cameron Simpson <cs@zip.com.au> - 2015-12-08 10:07 +1100
        Re: Understanding Python from a PHP coder's perspective Tim Chase <python.list@tim.thechases.com> - 2015-12-07 21:11 -0600
        Re: Understanding Python from a PHP coder's perspective Chris Angelico <rosuav@gmail.com> - 2015-12-08 14:47 +1100
  Re: Understanding Python from a PHP coder's perspective Cameron Simpson <cs@zip.com.au> - 2015-12-08 08:33 +1100
  Re: Understanding Python from a PHP coder's perspective Ian Kelly <ian.g.kelly@gmail.com> - 2015-12-07 14:37 -0700
  Re: Understanding Python from a PHP coder's perspective Chris Angelico <rosuav@gmail.com> - 2015-12-08 08:40 +1100
  Re: Understanding Python from a PHP coder's perspective Terry Reedy <tjreedy@udel.edu> - 2015-12-07 16:53 -0500
  Re: Understanding Python from a PHP coder's perspective Ian Kelly <ian.g.kelly@gmail.com> - 2015-12-07 14:59 -0700
  Re: Understanding Python from a PHP coder's perspective Chris Angelico <rosuav@gmail.com> - 2015-12-08 09:03 +1100
  Re: Understanding Python from a PHP coder's perspective Tim Chase <python.list@tim.thechases.com> - 2015-12-07 16:28 -0600
  Re: Understanding Python from a PHP coder's perspective villascape@gmail.com - 2015-12-07 20:11 -0800
  Re: Understanding Python from a PHP coder's perspective Peter Otten <__peter__@web.de> - 2015-12-08 10:24 +0100
  Re: Understanding Python from a PHP coder's perspective Chris Angelico <rosuav@gmail.com> - 2015-12-08 20:40 +1100

csiph-web