dain / leveldb

Port of LevelDB to Java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LevelDB in read-only filesystem

ameykshirsagar opened this issue · comments

Is it possible to migrate LevelDB dump on a read-only filesystem to do read operations??

I would guess this is possible without too much work. My guess is you will need to disable the compaction system, and add a wrapper around the DB interface that throws exceptions for all write methods.

I don't have any time to work on this code base other than committing minor fixes, so if you wanted to do this you would need to create a fork.