Redis
 sql >> Baza danych >  >> NoSQL >> Redis

Express Node.JS — Odbieranie wywołania zwrotnego Redis, wykonywanie obietnic

Rozgryzłem to. Użyłem biblioteki Q do wykonania wszystkich funkcji zamiast client.multi().exec(). Umożliwiło to czyste wykonanie wszystkich poleceń post redis, a następnie umożliwiło mi odzyskanie informacji.

W pliku Routes.js miałem tylko krótki fragment kodu. Wszystko jest wykonywane w pliku doctorDB.js.

routes.js

app.post('/addDoctorInfo', ensureLoggedIn('/login'), function(req, res, next){
        return doctorDB.addDoctor(req.body.id, req.body.doc, req, res, next);
});

doctorDB.js

var addDoctor = function addDoctor(id, doc, req, res, next){
    var fields = Object.keys(doc.fields);

    function middleName(id, doc){
        if (doc.middleName){ return client.hset(id, "middleName", doc.middleName); }
        else { return; }
    }

    return Q.all([Q.ninvoke(client, 'sadd', 'Doctors', id),
                    Q.ninvoke(client, 'hmset', id, "lastName", doc.lastName, "firstName", doc.firstName, "email", doc.email, "university", doc.university, "work", doc.work),
                    Q.ninvoke(client, 'sadd', id + ':fields', fields),
                    middleName(id, doc)]).then(function(x){
                        return getInfo(id, req, res, next);;
                    }, function (err) { res.status(404); });
};

Jest to przekazywane do funkcji getInfo(), która wysyła odpowiedź po stronie klienta:

var redisHGetAll = Q.nbind(client.hgetall, client);

var getInfo = function getInfo(id, req, res, next){
    return redisHGetAll(id).then(function(x){
        return findByMatchingProperties(x);
    }, function (err) { res.status(404); }).then(function(){
        return client.smembers(id + ':fields', function(err, reply){
            data['fields'] = reply;
            res.setHeader('Content-Type', 'application/json');
            res.end(JSON.stringify(data));
        });
    }, function (err) { res.status(404); })
};

function findByMatchingProperties(x) {
    for (var y in x){
        checkData(y, x[y]);
    }       

    function checkData(y, z){
        for (var d in data){
            if (d === y){
                data[d] = z;
            }
        }
    }
}

var data = {
    lastName: null,
    firstName: null,
    middleName: null,
    email: null,
    university: null,
    work: null,
    fields: null
};



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Jak prawidłowo korzystać z pul połączeń w redis?

  2. Redis i Memcache czy po prostu Redis?

  3. Redis:Zwróć wszystkie wartości przechowywane w bazie danych

  4. Połącz się z AWS ElastiCache z szyfrowaniem w tranzycie

  5. Jak wstrzymać lub wznowić zadanie z selerem?