Re: Re: [mdr-users] How are repositories supposed to be used by modules?

Martin Matula <[email protected]> Thu, 26 Sep 2002 13:18:16 +0200
Newsgroups gmane.comp.java.netbeans.modules.mdr.devel
Message-ID <[email protected]>
Hi Brian,

Brian Smith wrote:
> I wonder how much faster the in-memory representation is? How well does 
> it work? Is anybody using it?

Currently the memory impl. is not much faster - especially on smaller 
models it can even be smaller as currently it has to be bootstraped each 
time the MDR starts. We are planning on improving it to enable 
serialization of booted state of it.
But it should definitely be used when you often load and delete data - 
i.e. you import the model, do something with it and then you drop it 
from the MDR. This is because the btree impl. is quite ineffective in 
freeing unused storage space and thus the storage file could grow quickly.
Martin