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

नोडज में रेडिस से hgetall सूची लौटाएं

संक्षिप्त उत्तर यह है कि आप अतुल्यकालिक रूप से नहीं सोच रहे हैं। चूंकि आप अपने फ़ंक्शन में एसिंक्रोनस फ़ंक्शन का उपयोग कर रहे हैं, इसलिए आपका फ़ंक्शन भी एसिंक्रोनस होना चाहिए।

चूंकि आपने अपना शेष कोड पोस्ट नहीं किया है, यह मूल विचार है:

var client = require('redis').createClient();

function createMobs(callback) {
    var mobObject = { name: 'Goblin' };

    client.hmset('monsterlist', 'mobs', JSON.stringify(mobObject), function(err) {
        // Now that we're in here, assuming no error, the set has went through.

        client.hgetall('monsterlist', function(err, object) {
            // We've got our object!

            callback(object);
        });

        // There is no way to run code right here and have it access the object variable, as it would run right away, and redis hasn't had time to send you the data yet. Your myMobs function wouldn't work either, because it is returning a totally different function.
    });
};

app.get('/create', function(req, res) {
    createMobs(function(object) {
        res.render('mobs.jade', {
            mobs: object
        });
    });
});

उम्मीद है कि यह चीजों को स्पष्ट करने में मदद करता है।



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. रेडिस एचएलएल बहुत अधिक झूठी सकारात्मक

  2. ब्लूबर्ड के साथ नोडज में समाप्त होने वाले सभी वादों की प्रतीक्षा करें

  3. क्या FUSE फाइल सिस्टम के साथ Linux VFS कैश रखना संभव है?

  4. रेडिस, क्या कोई विषय (पब/उप) हमेशा कम से कम एक ग्राहक तक पहुंचाया जाएगा?

  5. बुकस्लीव/रेडिस में पबसुब कैसे काम करता है?