background preloader

Wiki

Facebook Twitter

Wiki. Blip Tutorial. Incremental Deserialization. Most approaches to serialization do not handle updates well, forcing you to deserialize an entire block and then reserialize it every time you make a small update. This is simply too slow when implementing a persistent store. The answer is to deserialize only what you need, keep the serialized form of everything that was deserialized, and then reserialize only what was changed. For large blocks, the speed increase is quite significant. This was implemented in the jit package of AgileWiki5. But the problem with using the jit package is that queries should be able to share these structures but queries on jit structures are not threadsafe, as queries may deserialize more of the data.

The IncDes classes allow you to create serializable tree structures, where the objects in these structures interoperate synchronously. Application logic, in the form of a component, can also be attached to an IncDes actor. Advanced IncDes We can also support CoW (Copy on Write) optimization. Persistence. Change Log.