Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm developing a REST HTTP API that has iOS clients connecting to it. The way it's currently set up (and tested with POSTman chrome ext) is that I make the request for the resource, and I have to wait for the whole thing to get read in and spit out for it to show up as a response.

Is this a good method for iOS and Mac client consumption or is there a better method for serving from GridFS?

I'm doing the following:

  // Download a PDF
  app.get('/api/download-pdf/:pdf_id', function(req, res){
    var gfs = new mongodb.GridStore(mongoose.connection.db, ObjectID(req.params.pdf_id), "r");
    gfs.open(function(err,gs) {
      if (err){
        res.send(500);
      } 
      else{
        gs.read(function(err,data) {
          res.header('Content-type','application/pdf');
          res.send(data);
          gs.close(function(err) {});
          if (err) throw(err);
        });
      }
    });
  });
share|improve this question

1 Answer

up vote 2 down vote accepted

the node driver now supports streaming to/from GridFS http://christiankvalheim.com/post/29753345741/new-features-in-the-driver-for-mongodb-2-2?8e43c3e0

gs.pipe(anotherStream)

See Streams

share|improve this answer
Thanks Aaron, I think that's what I was hoping, but wouldn't that stream it to another file location on disk? How would I go about streaming it directly to the client? – k00k Aug 21 '12 at 20:03
Ah, I think you're saying I can just do gs.pipe(res) – k00k Aug 21 '12 at 20:11
read up on nodejs streams, you can stream to files, response objects, and more. – aaronheckmann Aug 21 '12 at 20:50
Cool, thanks, will do! – k00k Aug 22 '12 at 14:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.