Re: [PHP] cache xml objects in php5

2005-09-27 Thread Jasper Bryant-Greene
Rasmus Lerdorf wrote: Jasper Bryant-Greene wrote: Have you looked at memcache? http://www.php.net/manual/en/ref.memcache.php He did say that serialization wasn't an option and you can't use memcached without serializing. You may not realize you are serializing, but the memcache extension s

Re: [PHP] cache xml objects in php5

2005-09-27 Thread Rasmus Lerdorf
Kevin Wang wrote: > My php5 web application needs to parse/marshall a bunch of large xml files > into > php5 objects at the beginning of handling each request. These xml files are > static across all the requests and it is really time consuming to > parse/marshall them into php5 objects. What so

Re: [PHP] cache xml objects in php5

2005-09-26 Thread Torgny Bjers
Kevin Wang wrote: >Hi All, > >My php5 web application needs to parse/marshall a bunch of large xml files into >php5 objects at the beginning of handling each request. These xml files are >static across all the requests and it is really time consuming to >parse/marshall them into php5 objects. > >

Re: [PHP] cache xml objects in php5

2005-09-26 Thread Jasper Bryant-Greene
Kevin Wang wrote: My php5 web application needs to parse/marshall a bunch of large xml files into php5 objects at the beginning of handling each request. These xml files are static across all the requests and it is really time consuming to parse/marshall them into php5 objects. I am wondering i