By default there's a index which indexes all instances of a certain type. When you never query this type and only access it by navigation, you can safely disable this index.
EmbeddedConfiguration configuration = Db4oEmbedded.newConfiguration(); configuration.common().objectClass(Person.class).indexed(false);