tzaeschke / zoodb

ZooDB Object Database
Apache License 2.0
57 stars 9 forks source link

Improve collection storage #107

Open tzaeschke opened 7 years ago

tzaeschke commented 7 years ago

Currently, storage of collections, especially Map/Set, are not terribly efficient. One problem is that during deserilaization, the hashcode() function of all keys is called when they are added to a map/set. This is partially done to avoid problems with schema compatibility between different Java versions.

Solution:

The last options sounds like the best.