serialisation db4o

serialisation db4o

am 16.08.2007 15:38:57 von king.albert2

Hi,


I'm reading up on serialising objects, and came across links to db4o, an
object oriented database.

Can anyone point out articles/blogs comparing PHP's serialisation process
and storing objects in an OODB. Is anything going on in PHP's biosphere
relating to OODB, possibly through PDO ?

And technically, can we use serialise() to make a structured/nested object
persistent across pages ?


thx

Ward

Re: serialisation db4o

am 16.08.2007 17:22:19 von luiheidsgoeroe

On Thu, 16 Aug 2007 15:38:57 +0200, Ward Germonpré
wrote:
> I'm reading up on serialising objects, and came across links to db4o, an
> object oriented database.
>
> Can anyone point out articles/blogs comparing PHP's serialisation process
> and storing objects in an OODB. Is anything going on in PHP's biosphere
> relating to OODB, possibly through PDO ?

Sorry, got no pointers for you there.

> And technically, can we use serialise() to make a structured/nested
> object
> persistent across pages ?

It can be, with some caveats:
1. You cannot serialize resources (db-connections, file-handles and the
like).
2. Some references will be lost.
3. See for serializing
objects:
--
Rik Wasmus

Re: serialisation db4o

am 17.08.2007 12:14:24 von king.albert2

Rik wrote in news:op.tw5rnhx4qnv3q9@metallium:

> Rik Wasmus

thanks Rik !


For those interested : http://www.ezpdo.net/blog/

Ward