--- Derick Rethans <derick@php.net> wrote:
> On Thu, 1 May 2003, Rasmus Lerdorf wrote:
>
> > Not sure what you are reading, but yes, if you use extension=foo.so in
> > your php.ini file, then foo.so is only loaded at server startup time.
> > However, due to funky Apache startup stuff, it is actually loaded,
> > unloaded and then loaded again at startup, but from then on there is no
> > per-request loading or unloading as there is with dl().
pfweww, that's good then. I couldn't imagine why it would need to reload for
every request, but after reading (or reading *too* deeply):
http://us2.php.net/manual/en/zend.possibilities.php#zend.possibilities.external
http://us2.php.net/manual/en/zend.possibilities.builtin.php
I started to get worried. I guess, in the first link above, under
Disadvantages, this statement caught me:
"The shared objects need to be loaded every time a script is being executed
(every hit), which is very slow."
This isn't true, though.
Anyway, thank you,
H