Existuje několik řešení. Můžete použít writeBuffer, writeFile nebo novou třídu jednoduché mřížky. Níže je váš příklad upraven pro použití instance bufferu.
// You can use an object id as well as filename now
var gs = new mongodb.GridStore(this.db, filename, "w", {
"chunk_size": 1024*4,
metadata: {
hashpath:gridfs_name,
hash:hash,
name: name
}
});
gs.open(function(err,store) {
// Write data and automatically close on finished write
gs.writeBuffer(data, true, function(err,chunk) {
// Each file has an md5 in the file structure
cb(err,hash,chunk);
});
});
Obecně nejlepším místem pro začátek jsou testy, které pokrývají široký profil použití pro třídy gridfs. Podívejte se.
https://github.com/christkv/node-mongodb-native/tree/master/test/gridstore