Hi,<br><br>I want to run some benchmarks with the Magma object serializer... Am I using it in the right way?<br><br>Thanks!!<br>Martin<br><br><br>    | serializer graphBuffer anObject classDefinitionsByteArray graphBufferByteArray loadedObject |<br>
<br>    anObject := Array with: 1 with: &#39;string&#39;.<br><br>    serializer := MaObjectSerializer new.<br>    graphBuffer := serializer serializeGraph: anObject.<br>    <br>    classDefinitionsByteArray := serializer classDefinitionsByteArray.<br>
    graphBufferByteArray := graphBuffer byteArray.<br><br>    &quot;put these two bytearrays into a stream, and reload them...&quot;<br><br>    loadedObject := MaObjectSerializer new<br>        classDefinitionsByteArray: classDefinitionsByteArray;<br>
        materializeGraph: graphBufferByteArray<br>