Redis
 sql >> Datenbank >  >> NoSQL >> Redis

Wie erstelle ich ein Modell im DRY-Muster mit Hilfe von flow.js (für asynchrone Aufrufe) in node.js?

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

function callA() {
  a();
}

function callB() {
  b();
}

perform(callA, callB);