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

2001-12-05 Thread Yermo M. Lamers
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 protocols. - Stig Yermo M. Lamers wrote: I took a look at Zend Accelerator

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

2001-11-26 Thread Yermo M. Lamers
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 - From: Yermo M. Lamers [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 25

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

2001-11-26 Thread Yermo M. Lamers
BALANCED SOLUTIONS - Original Message - From: Yermo M. Lamers [EMAIL PROTECTED] To: Benjamin Barringer [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, November 26, 2001 7:03 PM Subject: Re: [PHP-DEV] Server-Wide Persistent objects in PHP? Serializing to a file

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

2001-11-26 Thread Yermo M. Lamers
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, when you serialize to a file do the class definitions

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

[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

[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