After 426 days of tinkering, we finally release db4o Replication System (dRS) v6.0.
On the java side, we updated dRS to use the latest version of Hibernate 3.2. On the .net side, we give you what you love, the new .net conventions :
Db4objects.Drs.IReplicationSession replication
= Db4objects.Drs.Replication.Begin(providerFrom, providerTo);
Db4objects.Db4o.IObjectSet allObjects
= providerFrom.ObjectsChangedSinceLastReplication();
while (allObjects.HasNext())
{
object changed = allObjects.Next();
replication.Replicate(changed);
}
replication.Commit();
To develop a product from the ground up. To release it from my hands to developers. The feeling is like giving birth to a new baby. My own baby.
I hope you enjoy this release as much as I do. Tell me what you think. If you found a bug, you can report it here. Some more notable features here.