Re: [PHP-DEV] Server-Wide Persistent objects in PHP?

2001-12-05 Thread Yermo M. Lamers
> There are several choices available today, such as Corba, SOAP or > XML-RPC (check out php4/pear/PEAR/Remote.php for an example > implementation using XML-RPC). According to Derick, SRM can do this > today, which would probably be a lot faster than both Corba and the > XML-based pro

Re: [PHP-DEV] Server-Wide Persistent objects in PHP?

2001-11-26 Thread Yermo M. Lamers
I took a look at Zend Accelerator/Cache. That's not really what I'm looking for. It's basically just a pseudo-compiler that caches compiled versions of pages. It's not really a "live object cache". What I'm looking to do is to create a global scope where I can keep live pre-built instances of

Re: [PHP-DEV] Server-Wide Persistent objects in PHP?

2001-11-26 Thread Yermo M. Lamers
able, etc) that I saved from a previous run of the PHP interpreter (on a previous page) into a new one without having it crash? thanks, -- Yermo On Mon, 26 Nov 2001, Markus Fischer wrote: > On Mon, Nov 26, 2001 at 12:18:23PM -0500, Yermo M. Lamers wrote : > > Question for you, wh

Re: [PHP-DEV] Server-Wide Persistent objects in PHP?

2001-11-26 Thread Yermo M. Lamers
regards, > Andrey Hristov > IcyGEN Corporation > http://www.icygen.com > BALANCED SOLUTIONS > > > - Original Message - > From: "Yermo M. Lamers" <[EMAIL PROTECTED]> > To: "Benjamin Barringer" <[EMAIL PROTECTED]> > Cc: <[EMAI

Re: [PHP-DEV] Server-Wide Persistent objects in PHP?

2001-11-26 Thread Yermo M. Lamers
ent (for my particular code base). I > realize this isn't exactly what you need but; it may be a suitable > alternative? You should also try out the Zend Cache. For a lot of my > projects the cache is to $$$. > > Thanks > Ben > > > - Original Message -

[PHP-DEV] Server-Wide Persistent objects in PHP?

2001-11-25 Thread Yermo M. Lamers
I'm building a reusable component object system in PHP where construction of object trees, which needs to occur on every page, is very expensive. Running the subsequently built objects is very inexpensive. To make this system viable to use on high volume websites, I want to get rid of the "co

[PHP-DEV] Module writing question: Sharing Resources between separate modules.

2001-06-18 Thread Yermo M. Lamers
I would like to write a PHP module that makes use of an already established Mysql connection. To make things clean, I'd like the exported functions from my new module to accept MySQL-Link resources as in: $mysql_conn = mysql_connect( ); my_custom_module_func( $mysql_conn ); >From my read