Re: [PHP-DEV] Internal Working -- performance question

2001-06-24 Thread lenar
I don't know if MySQL supports HEAP tables under Win32 but otherwise I suggest using them for IPC in your PHP applications. We use it, and so far it has worked great for us (very good perfomance) using it combined with mysql_pconnect(). Lenar James Moore [EMAIL PROTECTED] wrote in message

RE: [PHP-DEV] Internal Working -- performance question

2001-06-23 Thread James Moore
a) Is there a faster way to send data between 2 processes, that will work with PHP, and is supported by Windows and *nix. How about abstacting it, under Linux use shared mem (should be fastest) if its avalible, other wise use sockets then If that's not avalible use database/file version. -

RE: [PHP-DEV] Internal Working -- performance question

2001-06-23 Thread Brian Tanner
. -Brian -Original Message- From: James Moore [mailto:[EMAIL PROTECTED]] Sent: June 23, 2001 3:04 AM To: 'Brian Tanner'; [EMAIL PROTECTED] Subject: RE: [PHP-DEV] Internal Working -- performance question a) Is there a faster way to send data between 2 processes, that will work with PHP

[PHP-DEV] Internal Working -- performance question

2001-06-22 Thread Brian Tanner
I'm am writing a large web application, and on every request, my pages must load the environment, which takes up a significant amount of time (.1 seconds on a Athlon 1 Ghz). Much of that time seems to be spent on loading the environment from disk, and processing it into usable form. So I