Re: [PHP] PHP Serialization Performance

2008-04-21 Thread Waynn Lue
Thanks very much, I ended up using seralize in the database. On Thu, Apr 17, 2008 at 4:42 AM, Casey <[EMAIL PROTECTED]> wrote: > > On Wed, Apr 16, 2008 at 4:04 AM, Waynn Lue <[EMAIL PROTECTED]> wrote: > > I'm using PHP to cache files that are backed by the database. In the > > course of writin

Re: [PHP] PHP Serialization Performance

2008-04-16 Thread Casey
On Wed, Apr 16, 2008 at 4:04 AM, Waynn Lue <[EMAIL PROTECTED]> wrote: > I'm using PHP to cache files that are backed by the database. In the > course of writing these functions, I end up with a set of variables > that are needed by my application, returned in an array. I can either > directly

Re: [PHP] PHP Serialization Performance

2008-04-16 Thread Richard Heyes
I'm using PHP to cache files that are backed by the database. In the course of writing these functions, I end up with a set of variables that are needed by my application, returned in an array. I can either directly generate the array in a .php file, then use require_once to get that variable, o

[PHP] PHP Serialization Performance

2008-04-16 Thread Waynn Lue
I'm using PHP to cache files that are backed by the database. In the course of writing these functions, I end up with a set of variables that are needed by my application, returned in an array. I can either directly generate the array in a .php file, then use require_once to get that variable, or