To avoid unnecessary network traffic, the client and server can queue up operations, which don't need to be executed immediately. As soon as a message need to be send, all queued messages are send as well. You can configure the maximum of this message queue.
A larger size allows to queue up more messages and avoid unnecessary network roundtrip's. However queued up messages consume additional memory.
IClientConfiguration configuration = Db4oClientServer.NewClientConfiguration(); configuration.Networking.MaxBatchQueueSize = 1024;
Dim configuration As IClientConfiguration = Db4oClientServer.NewClientConfiguration() configuration.Networking.MaxBatchQueueSize = 1024