Skip to content

Instantly share code, notes, and snippets.

@mani95lisa
Created August 14, 2013 07:52
Show Gist options
  • Save mani95lisa/6228829 to your computer and use it in GitHub Desktop.
Save mani95lisa/6228829 to your computer and use it in GitHub Desktop.
function freeze_db() {
rc = db.runCommand({fsync: 1, lock: 1});
if (rc.ok == 1){
return 1;
} else {
return 0;
}
}
freeze_db();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment