Я пытаюсь этот код из:
серверный кэш-экспресс-
Кодовая часть, на которой я сосредоточен:
var cache = (duration) => {
return (req, res, next) => {
let key = '__express__' + req.originalUrl || req.url
let cachedBody = mcache.get(key)
if (cachedBody) {
res.send(cachedBody)
return
} else {
res.sendResponse = res.send
res.send = (body) => {
mcache.put(key, body, duration * 1000);
res.sendResponse(body)
}
next()
}
}
}
app.get('/', cache(10), (req, res) => {
setTimeout(() => {
res.render('index', { title: 'Hey', message: 'Hello there', date: new Date()})
}, 5000) //setTimeout was used to simulate a slow processing request
})
Что я не понимаю, так это: почему res.render вызывает res.send? И если это так, разве нет цикла, потому что res.sendResponse (body), в свою очередь, является псевдонимом res.send? Код работает, но я просто не могу его полностью объяснить.
спасибо большое.