There is this in LevelUP Documentation (https://github.com/rvagg/node-levelup#multi-process-access):
LevelDB is thread-safe but is not suitable for accessing with multiple processes. You should only ever have a LevelDB database open from a single Node.js process. Node.js clusters are made up of multiple processes so a LevelUP instance cannot be shared between them either.
So I could not use Node Cluster (http://nodejs.org/api/cluster.html)
Is there another option to make a multi-process (or multi-thread) Node.js Application accessing a LevelDB Database?