Skip to content

Commit

Permalink
Improve performance (set minimongo debug to false)
Browse files Browse the repository at this point in the history
  • Loading branch information
Théo mathieu committed Mar 21, 2016
1 parent d046882 commit 369dde8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Data.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
import minimongo from 'minimongo-cache';
process.nextTick = setImmediate;

const db = new minimongo();
db.debug = false;

export default {
_endpoint: null,
_options: null,
ddp: null,
subscriptions: {},
db: new minimongo(),
db: db,
calls: [],
hasBeenConnected: false,

Expand Down

0 comments on commit 369dde8

Please sign in to comment.