From 2c158558f5558d28ea47c15cfbaf67ea2aa488d7 Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 22 Apr 2016 11:05:54 +0200 Subject: [PATCH] use leveldb adaptor by default --- config.js.dist | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.js.dist b/config.js.dist index e2f521963..b79777eb7 100644 --- a/config.js.dist +++ b/config.js.dist @@ -19,7 +19,7 @@ module.exports = { * it will not scale well if your server stays alive for a long time. * but it is completely dependency free */ - storage: './storage/amnesia', + //storage: './storage/amnesia', /* the 'lvl' storage module uses leveldb * it persists, and will perform better than amnesiadb @@ -31,8 +31,8 @@ module.exports = { * * to delete all pads, run `rm -rf $YOUR_DB` */ - // storage: './storage/lvl', - // levelPath: './test.level.db' + storage: './storage/lvl', + levelPath: './test.level.db' /* mongo is the original storage engine for cryptpad * it has been more thoroughly tested, but requires a little more setup