MongoDB
 sql >> डेटाबेस >  >> NoSQL >> MongoDB

Node.js Mongo's GridFS से चित्र प्रदर्शित करता है

सुनिश्चित करें कि आप ड्राइवर के 1.0.1 पर हैं और डेटा को स्ट्रीम करने के लिए http अनुरोध के पाइप का उपयोग करते हैं, नीचे दिया गया उदाहरण इसे एक फ़ाइल में कर रहा है। 1.1 में यह और भी बेहतर हो जाएगा क्योंकि ग्रिडस्टोर ऑब्जेक्ट एक रीड/राइट स्ट्रीम संगत ऑब्जेक्ट होगा :)

/**
 * A simple example showing how to pipe a file stream through from gridfs to a file
 *
 * @_class gridstore
 * @_function stream
 * @ignore
 */
exports.shouldCorrectlyPipeAGridFsToAfile = function(test) {
  var db = new Db('integration_tests', new Server("127.0.0.1", 27017, 
   {auto_reconnect: false, poolSize: 1, ssl:useSSL}), {native_parser: native_parser});

  // Establish connection to db  
  db.open(function(err, db) {
    // Open a file for writing
    var gridStoreWrite = new GridStore(db, "test_gs_read_stream_pipe", "w", {chunkSize:1024});
    gridStoreWrite.writeFile("./test/gridstore/test_gs_weird_bug.png", function(err, result) {      
      // Open the gridStore for reading and pipe to a file
      var gridStore = new GridStore(db, "test_gs_read_stream_pipe", "r");
      gridStore.open(function(err, gridStore) {
        // Grab the read stream
        var stream = gridStore.stream(true);
        // When the stream is finished close the database
        stream.on("end", function(err) {          
          // Read the original content
          var originalData = fs.readFileSync("./test/gridstore/test_gs_weird_bug.png");
          // Ensure we are doing writing before attempting to open the file
          fs.readFile("./test_gs_weird_bug_streamed.tmp", function(err, streamedData) {
            // Compare the data
            test.deepEqual(originalData, streamedData);

            // Close the database
            db.close();
            test.done();          
          });
        })

        // Create a file write stream
        var fileStream = fs.createWriteStream("./test_gs_weird_bug_streamed.tmp");
        // Pipe out the data
        stream.pipe(fileStream);
      })
    })
  });
}


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. MongoDB प्रतिकृति सरल पासवर्ड प्रमाणीकरण के साथ सेट है

  2. अद्यतन घटनाओं (मोंगो कनेक्टर) पर भेजे गए डिबेज़ियम फ़ील्ड को कैसे कॉन्फ़िगर करें

  3. mongoimport के आयात मोड

  4. MongoDB के साथ सरल मतदान प्रणाली

  5. थ्रूपुट संचालन में सुधार के लिए MongoDB डेटा मॉडलिंग का उपयोग कैसे करें