mongoConnection = new MongoConnection(config.getMongoHost(),
config.getMongoPort(), config.getMongoDatabase());
}
static MongoMicroKernel initMicroKernel() throws Exception {
NodeStore nodeStore = new NodeStoreMongo(mongoConnection);
BlobStore blobStore = new BlobStoreFS(
System.getProperty("java.io.tmpdir"));
return new MongoMicroKernel(nodeStore, blobStore);
}