Skip to content

Instantly share code, notes, and snippets.

@fergiemcdowall
Created May 2, 2015 11:55
Show Gist options
  • Save fergiemcdowall/a20a1b67811611f4c6cc to your computer and use it in GitHub Desktop.
Save fergiemcdowall/a20a1b67811611f4c6cc to your computer and use it in GitHub Desktop.
Make a snapshot of a search-index
var si = require('search-index')({logLevel:false});
var fs = require('fs');
si.snapShot(function(rs) {
rs.pipe(fs.createWriteStream('backup.gz'))
.on('close', function() {
console.log('great success dear leader')
})
.on('error', function() {
console.log('err')
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment