Re: Improving interpreter startup speed

2008-10-29 Thread Lie
On Oct 27, 2:36 pm, Paul Rubin http://[EMAIL PROTECTED] wrote:
 James Mills [EMAIL PROTECTED] writes:
  Heaven knows! I hardly think invoking hundreds
  and possibly thousands of short-lived python
  interpreters to be an optimal solution that may
  have spawned this particular thread.

 It's not optimal but it is very common (CGI for example).

CGI? When you're talking about CGI, network traffic is simply the
biggest bottleneck, not something like python interpreter startup
time. Also, welcome to the 21st century, where CGI is considered as an
outdated protocol.
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-29 Thread James Mills
On Wed, Oct 29, 2008 at 9:43 PM, Lie [EMAIL PROTECTED] wrote:
 On Oct 27, 2:36 pm, Paul Rubin http://[EMAIL PROTECTED] wrote:
 It's not optimal but it is very common (CGI for example).

 CGI? When you're talking about CGI, network traffic is simply the
 biggest bottleneck, not something like python interpreter startup
 time. Also, welcome to the 21st century, where CGI is considered as an
 outdated protocol.

That's right. That's why we have WSGI. That's
why we built mod_wsgi for Apache. Hell taht's
why we actually have really nice Web Frameworks
such as: CherryPy, Pylons, Paste, etc. They
perform pretty damn well!

--JamesMills

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-29 Thread J. Clifford Dyer
Maybe Ruby is the right language for your need.

Just sayin'.



On Sun, 2008-10-26 at 13:19 +, Pedro Borges wrote:
 The scripts i need to run but be executed with no apparent delay  
 specially when the text transforms are simple.
 
 
 On Oct 26, 2008, at 11:13 AM, James Mills wrote:
 
  On Sun, Oct 26, 2008 at 11:23 AM, BJörn Lindqvist  
  [EMAIL PROTECTED] wrote:
  How are you getting those numbers? 330 μs is still pretty fast,  
  isn't
  it? :) Most disks have a seek time of 10-20 ms so it seem implausible
  to me that Ruby would be able to cold start in 47 ms.
 
  $ time python -c pass
 
  real0m0.051s
  user0m0.036s
  sys 0m0.008s
 
  $ time python3.0 -c pass
 
  real0m0.063s
  user0m0.048s
  sys 0m0.004s
 
  And yes I agree. the CPython interpreter startup times is
  a stupid thing to be worrying about, especially since that
  is never the bottleneck.
 
  Python loads plenty fast enough!
 
  --JamesMills
 
  -- 
  --
  -- Problems are solved by method
 
 --
 http://mail.python.org/mailman/listinfo/python-list

--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-29 Thread bearophileHUGS
Terry Reedy:
 The current developers, most of whom use Python daily, [...]

Thank you for bringing some light in this thread so filled with worse
than useless comments.

Bye,
bearophile
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-29 Thread BJörn Lindqvist
2008/10/27 James Mills [EMAIL PROTECTED]:
 On Mon, Oct 27, 2008 at 5:40 PM, David Cournapeau [EMAIL PROTECTED] wrote:
 Depends on the tool: build tool and source control tools are example
 it matters (specially when you start interfaciing them with IDE or
 editors). Having fast command line tools is an important feature of
 UNIX, and if you want to insert a python-based tool in a given
 pipeline, it can hurt it the pipeline is regularly updated.

 Fair enough. But still:
 0.5s old startup is fast enough
 0.08s warm startup is fast enough.

 Often fast enough is fast enough

Nope, when it comes to start up speed the only thing that is fast
enough is instantly. :) For example, if I write a GUI text editor in
Python, the total cold start up time might be 1500 ms on a cold
system. 750 ms for the interpreter and 750 ms for the app itself.
However, if I also have other processes competing for IO, torrent
downloads or compilations for example, the start up time grows
proportional to the disk load. For example, if there is 50% constant
disk load, my app will start in 1.5 / (1 - 0.5) = 3 seconds (in the
best case, assuming IO access is allocated as efficiently as possible
when the number of processes grows, which it isn't). If the load is
75%, the start time becomes 1.5 / (1 - 0.75) = 6 seconds.

Now if the Python interpreters start up time was 200 ms, by apps start
up time with 75% disk load becomes (0.2 + 0.75) / (1 - 0.75) = 3.8
seconds which is significantly better.


-- 
mvh Björn
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-29 Thread Paul Boddie
On 29 Okt, 13:55, [EMAIL PROTECTED] wrote:
 Terry Reedy:

  The current developers, most of whom use Python daily, [...]

 Thank you for bringing some light in this thread so filled with worse
 than useless comments.

Indeed. Observing that CGI is old-fashioned, aside from not really
helping people who choose or are obliged to use that technology,
doesn't detract from arguments noting various other areas where start-
up performance is worth improving (in build environments, for example,
as someone suggested), nor does it address the more basic issue of why
Python issues as many system calls as it does when starting up,
something which has actually been looked at by the core developers
(indicating that it isn't a waste of time as one individual claimed)
as well as by developers in other projects where application start-up
time has been criticised.

Although people are using multi-GHz CPUs on the desktop, there are
environments where it is undesirable for Python to go sniffing around
the filesystem just for the fun of it. In fact, various embedded
projects have employed some kind of daemon for Python in order to get
Python-based programs started quickly enough - something that I'm sure
plenty of people would ridicule if, say, Java were involved. The
better solution would just involve improving the obvious: the start-up
performance.

Paul
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-29 Thread Michael
Tried using the precache daemon to see if it gives any boost?
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-29 Thread Steve Holden
BJörn Lindqvist wrote:
 2008/10/27 James Mills [EMAIL PROTECTED]:
 On Mon, Oct 27, 2008 at 5:40 PM, David Cournapeau [EMAIL PROTECTED] wrote:
 Depends on the tool: build tool and source control tools are example
 it matters (specially when you start interfaciing them with IDE or
 editors). Having fast command line tools is an important feature of
 UNIX, and if you want to insert a python-based tool in a given
 pipeline, it can hurt it the pipeline is regularly updated.
 Fair enough. But still:
 0.5s old startup is fast enough
 0.08s warm startup is fast enough.

 Often fast enough is fast enough
 
 Nope, when it comes to start up speed the only thing that is fast
 enough is instantly. :) For example, if I write a GUI text editor in
 Python, the total cold start up time might be 1500 ms on a cold
 system. 750 ms for the interpreter and 750 ms for the app itself.
 However, if I also have other processes competing for IO, torrent
 downloads or compilations for example, the start up time grows
 proportional to the disk load. For example, if there is 50% constant
 disk load, my app will start in 1.5 / (1 - 0.5) = 3 seconds (in the
 best case, assuming IO access is allocated as efficiently as possible
 when the number of processes grows, which it isn't). If the load is
 75%, the start time becomes 1.5 / (1 - 0.75) = 6 seconds.
 
 Now if the Python interpreters start up time was 200 ms, by apps start
 up time with 75% disk load becomes (0.2 + 0.75) / (1 - 0.75) = 3.8
 seconds which is significantly better.
 
 
But still not fast enough to be regarded as even close to instant, so
you appear to be fiddling while Rome burns ...

reqards
 Steve
-- 
Steve Holden+1 571 484 6266   +1 800 494 3119
Holden Web LLC  http://www.holdenweb.com/

--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread David Cournapeau
On Mon, Oct 27, 2008 at 2:36 PM, Terry Reedy [EMAIL PROTECTED] wrote:

 It this a theoretical problem or an actual one, that we might have other
 suggestions for?

Any command line based on python is a real example of that problem.
There are plenty of them.

David
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread James Mills
On Mon, Oct 27, 2008 at 3:36 PM, Terry Reedy [EMAIL PROTECTED] wrote:
 It this a theoretical problem or an actual one, that we might have other
 suggestions for?

Heaven knows! I hardly think invoking hundreds
and possibly thousands of short-lived python
interpreters to be an optimal solution that may
have spawned this particular thread.

--JamesMills

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread James Mills
On Mon, Oct 27, 2008 at 5:28 PM, David Cournapeau [EMAIL PROTECTED] wrote:
 Any command line based on python is a real example of that problem.
 There are plenty of them.

Yes, but in most cases you are not invoking your
command-line app x times per y units of time.

--JamesMills

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread Paul Rubin
James Mills [EMAIL PROTECTED] writes:
 Heaven knows! I hardly think invoking hundreds
 and possibly thousands of short-lived python
 interpreters to be an optimal solution that may
 have spawned this particular thread.

It's not optimal but it is very common (CGI for example).
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread David Cournapeau
On Mon, Oct 27, 2008 at 4:33 PM, James Mills
[EMAIL PROTECTED] wrote:
 Yes, but in most cases you are not invoking your
 command-line app x times per y units of time.

Depends on the tool: build tool and source control tools are example
it matters (specially when you start interfaciing them with IDE or
editors). Having fast command line tools is an important feature of
UNIX, and if you want to insert a python-based tool in a given
pipeline, it can hurt it the pipeline is regularly updated.

cheers,

David
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread James Mills
On Mon, Oct 27, 2008 at 5:36 PM, Paul Rubin
http://phr.cx@nospam.invalid wrote:
 It's not optimal but it is very common (CGI for example).

Which is why we (The Python Community)
created WSGI and mod_wsgi. Cmon guys
these problems are a bit old and out
dated :)

--JamesMills

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread Gabriel Genellina
En Sun, 26 Oct 2008 23:52:32 -0200, James Mills  
[EMAIL PROTECTED] escribió:



On Mon, Oct 27, 2008 at 4:12 AM, Benjamin Kaplan
[EMAIL PROTECTED] wrote:
You must be in a real big hurry if half a second matters that much to  
you.

Maybe if it took 5 seconds for the interpreter to start up, I could
understand having a problem with the start up time.


+1 This thread is stupid and pointless.
Even for a so-called cold startup 0.5s is fast enough!


I don't see the need to be rude.
And I DO care for Python startup time and memory footprint, and others do  
too. Even if it's a stupid thing (for you).


--
Gabriel Genellina

--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread James Mills
On Mon, Oct 27, 2008 at 5:40 PM, David Cournapeau [EMAIL PROTECTED] wrote:
 Depends on the tool: build tool and source control tools are example
 it matters (specially when you start interfaciing them with IDE or
 editors). Having fast command line tools is an important feature of
 UNIX, and if you want to insert a python-based tool in a given
 pipeline, it can hurt it the pipeline is regularly updated.

Fair enough. But still:
0.5s old startup is fast enough
0.08s warm startup is fast enough.

Often fast enough is fast enough

--JamesMills

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread James Mills
On Mon, Oct 27, 2008 at 5:46 PM, Gabriel Genellina
[EMAIL PROTECTED] wrote:
 +1 This thread is stupid and pointless.
 Even for a so-called cold startup 0.5s is fast enough!

 I don't see the need to be rude.
 And I DO care for Python startup time and memory footprint, and others do
 too. Even if it's a stupid thing (for you).

I apologize. I do not see the point comparing Python with
RUby however, or Python with anything else.

So instead of coming up with arbitary problems, why don't
we come up with solutions for Improving Interpreter Startup Speeds ?

I have only found that using the -S option speeds it up
significantly, but that's only if you're not using any site
packages and only using the built in libraries.

Can site.py be improved ?

--JamesMills

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread [EMAIL PROTECTED]

To make faster python, you can do:

1.) Use mod_python, and not cgi.
2.) Use other special python server that remaining in memory, and call 
it from compiled C code. For example, the C code communicate this server 
with pipes, tcp, (or with special files, and the result will come back 
in other file).
You can improve this server when you split threads to python 
subprocesses, and they still alive for X minutes.
You have one control process (py), and this (like the apache) 
communicate the subprocesses, kill them after timeout, and start a new 
if needed.


dd

James Mills írta:

On Mon, Oct 27, 2008 at 5:46 PM, Gabriel Genellina
[EMAIL PROTECTED] wrote:

+1 This thread is stupid and pointless.
Even for a so-called cold startup 0.5s is fast enough!

I don't see the need to be rude.
And I DO care for Python startup time and memory footprint, and others do
too. Even if it's a stupid thing (for you).


I apologize. I do not see the point comparing Python with
RUby however, or Python with anything else.

So instead of coming up with arbitary problems, why don't
we come up with solutions for Improving Interpreter Startup Speeds ?

I have only found that using the -S option speeds it up
significantly, but that's only if you're not using any site
packages and only using the built in libraries.

Can site.py be improved ?

--JamesMills



--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread Terry Reedy

David Cournapeau wrote:

On Mon, Oct 27, 2008 at 2:36 PM, Terry Reedy [EMAIL PROTECTED] wrote:

It this a theoretical problem or an actual one, that we might have other
suggestions for?


Any command line based on python is a real example of that problem.


No it is not.
The specific problem that you wrote and I responded to was

Not if the startup is the main cost for a command you need to repeat 
many times. 


in a short enough period so that the startup overhead was a significant 
fraction of the total time and therefore a burden.


--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-27 Thread Terry Reedy

James Mills wrote:

So instead of coming up with arbitary problems, why don't
we come up with solutions for Improving Interpreter Startup Speeds ?


The current developers, most of whom use Python daily, are aware that 
faster startup would be better.  2.6 and 3.0 start up quicker because 
the some devs combed through the list of startup imports to see what 
could be removed (or, in one case, I believe, consolidated).  Some were. 
 Anyone who is still itching on this subject can seek further 
improvements and, if successful, submit a patch.


Or, one could check the Python wiki for a StartUpTime page and see if 
one needs to be added or improved/updated with information from the 
PyDev list archives to make it easier for a new developer to get up to 
speed on what has already been done in this area and what might be done.


tjr

--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread James Mills
On Sun, Oct 26, 2008 at 11:23 AM, BJörn Lindqvist [EMAIL PROTECTED] wrote:
 How are you getting those numbers? 330 μs is still pretty fast, isn't
 it? :) Most disks have a seek time of 10-20 ms so it seem implausible
 to me that Ruby would be able to cold start in 47 ms.

$ time python -c pass

real0m0.051s
user0m0.036s
sys 0m0.008s

$ time python3.0 -c pass

real0m0.063s
user0m0.048s
sys 0m0.004s

And yes I agree. the CPython interpreter startup times is
a stupid thing to be worrying about, especially since that
is never the bottleneck.

Python loads plenty fast enough!

--JamesMills

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread Pedro Borges
The scripts i need to run but be executed with no apparent delay  
specially when the text transforms are simple.



On Oct 26, 2008, at 11:13 AM, James Mills wrote:

On Sun, Oct 26, 2008 at 11:23 AM, BJörn Lindqvist  
[EMAIL PROTECTED] wrote:
How are you getting those numbers? 330 μs is still pretty fast,  
isn't

it? :) Most disks have a seek time of 10-20 ms so it seem implausible
to me that Ruby would be able to cold start in 47 ms.


$ time python -c pass

real0m0.051s
user0m0.036s
sys 0m0.008s

$ time python3.0 -c pass

real0m0.063s
user0m0.048s
sys 0m0.004s

And yes I agree. the CPython interpreter startup times is
a stupid thing to be worrying about, especially since that
is never the bottleneck.

Python loads plenty fast enough!

--JamesMills

--
--
-- Problems are solved by method


--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread Paul Rubin
Pedro Borges [EMAIL PROTECTED] writes:
 The scripts i need to run but be executed with no apparent delay
 specially when the text transforms are simple.

Basically you should keep the interpreter running and the script in
memory in that case.
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread BJörn Lindqvist
2008/10/26 James Mills [EMAIL PROTECTED]:
 On Sun, Oct 26, 2008 at 11:23 AM, BJörn Lindqvist [EMAIL PROTECTED] wrote:
 How are you getting those numbers? 330 μs is still pretty fast, isn't
 it? :) Most disks have a seek time of 10-20 ms so it seem implausible
 to me that Ruby would be able to cold start in 47 ms.

 $ time python -c pass

 real0m0.051s
 user0m0.036s
 sys 0m0.008s

Pedro was talking about cold startup time:

$ sudo sh -c echo 3  /proc/sys/vm/drop_caches
$ time python -c pass

real0m0.627s
user0m0.016s
sys 0m0.008s

That is quite a lot and for short scripts the startup time can easily
dominate the total time.

 And yes I agree. the CPython interpreter startup times is
 a stupid thing to be worrying about, especially since that
 is never the bottleneck.

I disagree. The extra time Python takes to start makes it unsuitable
for many uses. For example, if you write a simple text editor then
Pythons longer startup time might be to much.


-- 
mvh Björn
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread Benjamin Kaplan
On Sun, Oct 26, 2008 at 1:45 PM, BJörn Lindqvist [EMAIL PROTECTED] wrote:

 2008/10/26 James Mills [EMAIL PROTECTED]:
  On Sun, Oct 26, 2008 at 11:23 AM, BJörn Lindqvist [EMAIL PROTECTED]
 wrote:
  How are you getting those numbers? 330 μs is still pretty fast, isn't
  it? :) Most disks have a seek time of 10-20 ms so it seem implausible
  to me that Ruby would be able to cold start in 47 ms.
 
  $ time python -c pass
 
  real0m0.051s
  user0m0.036s
  sys 0m0.008s

 Pedro was talking about cold startup time:

 $ sudo sh -c echo 3  /proc/sys/vm/drop_caches
 $ time python -c pass

 real0m0.627s
 user0m0.016s
 sys 0m0.008s

 That is quite a lot and for short scripts the startup time can easily
 dominate the total time.

  And yes I agree. the CPython interpreter startup times is
  a stupid thing to be worrying about, especially since that
  is never the bottleneck.

 I disagree. The extra time Python takes to start makes it unsuitable
 for many uses. For example, if you write a simple text editor then
 Pythons longer startup time might be to much.


You must be in a real big hurry if half a second matters that much to you.
Maybe if it took 5 seconds for the interpreter to start up, I could
understand having a problem with the start up time.
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread Terry Reedy

Benjamin Kaplan wrote:


I disagree. The extra time Python takes to start makes it unsuitable
for many uses. For example, if you write a simple text editor then
Pythons longer startup time might be to much.


You must be in a real big hurry if half a second matters that much to 
you. Maybe if it took 5 seconds for the interpreter to start up, I could 
understand having a problem with the start up time.


The secret is to start Python at least a second before one is actually 
ready to start.


--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread James Mills
On Sun, Oct 26, 2008 at 11:19 PM, Pedro Borges [EMAIL PROTECTED] wrote:
 The scripts i need to run but be executed with no apparent delay specially
 when the text transforms are simple.

That makes no sense whatsoever!

If you are performing data conversion with
Python, interpreter startup times are going
to be so insignificant.

--JamesMills

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread James Mills
On Mon, Oct 27, 2008 at 4:12 AM, Benjamin Kaplan
[EMAIL PROTECTED] wrote:
 You must be in a real big hurry if half a second matters that much to you.
 Maybe if it took 5 seconds for the interpreter to start up, I could
 understand having a problem with the start up time.

+1 This thread is stupid and pointless.
Even for a so-called cold startup 0.5s is fast enough!

--JamesMills

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread James Mills
On Mon, Oct 27, 2008 at 3:45 AM, BJörn Lindqvist [EMAIL PROTECTED] wrote:
 Pedro was talking about cold startup time:

 $ sudo sh -c echo 3  /proc/sys/vm/drop_caches
 $ time python -c pass

 real0m0.627s
 user0m0.016s
 sys 0m0.008s

$ sudo sh -c echo 3  /proc/sys/vm/drop_caches
$ time python -S -c pass

real0m0.244s
user0m0.004s
sys 0m0.008s

With -S (don't imply 'import site' on initialization)

I suspect that's to do with importing modules,
the site specific modules, etc. Disk access will
tend to chew into this startup time. Use -S
if you're that worried about startup times (heaven
knows what affect it'll have on your app though).

--JamesMils

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread David Cournapeau
On Mon, Oct 27, 2008 at 10:52 AM, James Mills
[EMAIL PROTECTED] wrote:
 On Mon, Oct 27, 2008 at 4:12 AM, Benjamin Kaplan
 +1 This thread is stupid and pointless.
 Even for a so-called cold startup 0.5s is fast enough!

Not if the startup is the main cost for a command you need to repeat many times.

David
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread James Mills
On Mon, Oct 27, 2008 at 3:15 PM, David Cournapeau [EMAIL PROTECTED] wrote:
 Not if the startup is the main cost for a command you need to repeat many 
 times.

Seriously if you have to spawn and kill python
processes that many times for an initial cold
startup and subsequent warm startups to be
any significance, you're doing something wrong!

--JamesMills

-- 
--
-- Problems are solved by method
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-26 Thread Terry Reedy

David Cournapeau wrote:

On Mon, Oct 27, 2008 at 10:52 AM, James Mills
[EMAIL PROTECTED] wrote:

On Mon, Oct 27, 2008 at 4:12 AM, Benjamin Kaplan
+1 This thread is stupid and pointless.
Even for a so-called cold startup 0.5s is fast enough!


Not if the startup is the main cost for a command you need to repeat many times.


It this a theoretical problem or an actual one, that we might have other 
suggestions for?


--
http://mail.python.org/mailman/listinfo/python-list


Improving interpreter startup speed

2008-10-25 Thread Pedro Borges
Hi guys,


Is there a way to improve the interpreter startup speed?

In my machine (cold startup) python takes 0.330 ms and ruby takes
0.047 ms, after cold boot python takes 0.019 ms and ruby 0.005 ms to
start.


TIA
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-25 Thread Lie Ryan
On Sat, 25 Oct 2008 12:32:07 -0700, Pedro Borges wrote:

 Hi guys,
 
 
 Is there a way to improve the interpreter startup speed?
 
 In my machine (cold startup) python takes 0.330 ms and ruby takes 0.047 
 ms, after cold boot python takes 0.019 ms and ruby 0.005 ms to start.
 
 
 TIA

um... does it really matter? It's less than a second and only once on the 
program startup...

if you've found yourself destroying small python processes thousands of 
times, try creating the controller program in python, so this controller 
program would import the small modules and doesn't restart python 
interpreters that many times.

--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-25 Thread Steven D'Aprano
On Sat, 25 Oct 2008 12:32:07 -0700, Pedro Borges wrote:

 Hi guys,
 
 
 Is there a way to improve the interpreter startup speed?

Get a faster computer?
 
 In my machine (cold startup) python takes 0.330 ms and ruby takes 0.047
 ms, after cold boot python takes 0.019 ms and ruby 0.005 ms to start.

How are you measuring this?


-- 
Steven
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-25 Thread BJörn Lindqvist
2008/10/25 Pedro Borges [EMAIL PROTECTED]:
 Is there a way to improve the interpreter startup speed?

 In my machine (cold startup) python takes 0.330 ms and ruby takes
 0.047 ms, after cold boot python takes 0.019 ms and ruby 0.005 ms to
 start.

How are you getting those numbers? 330 μs is still pretty fast, isn't
it? :) Most disks have a seek time of 10-20 ms so it seem implausible
to me that Ruby would be able to cold start in 47 ms.


-- 
mvh Björn
--
http://mail.python.org/mailman/listinfo/python-list


Re: Improving interpreter startup speed

2008-10-25 Thread Terry Reedy

Pedro Borges wrote:

Hi guys,


Is there a way to improve the interpreter startup speed?

In my machine (cold startup) python takes 0.330 ms and ruby takes
0.047 ms, after cold boot python takes 0.019 ms and ruby 0.005 ms to
start.


You of course mean CPython, but Version, version, what Version?
3.0 starts much quicker than 2.5.  Don't have 2.6.

--
http://mail.python.org/mailman/listinfo/python-list