Redis
 sql >> Database >  >> NoSQL >> Redis

Come creare un modello nel modello DRY con l'aiuto di flow.js (per chiamate asincrone) in node.js?

function perform(first, second) {
  flow.exec(first, second);
}

function callA() {
  a();
}

function callB() {
  b();
}

perform(callA, callB);