Hi Elias,
I think you are working off trunk rather than one of the older
snapshots. Previously there was an enable.yxzengine = true flag for
each storage engine. Then we realized this was stupid because it meant
each storage engine had to be a part of voldemort and you couldn't
have a plugin engine.
To add this feature we changed it to work this way:
storage.configs=voldemort.store.bdb.BdbStorageConfiguration,
voldemort.store.readonly.RandomAccessFileStorageConfiguration,...
i.e. you add the full class name for all storage engines you want to
enable. The default is you get BDB, MySQL, memory, cache, and
read-only.
I haven't documented this well because it is only on trunk so far.
-Jay