joyent-portal/spikes/leak/src/server/routes/leak.js

76 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-11-21 15:18:12 +02:00
const prettyHrtime = require('pretty-hrtime');
// leak example from https://auth0.com/blog/four-types-of-leaks-in-your-javascript-code-and-how-to-get-rid-of-them/
let theLeak = null;
let anotherLeak = [];
2016-11-21 15:18:12 +02:00
const fibonacci = (num) => {
if (num <= 1) return 1;
return fibonacci(num - 1) + fibonacci(num - 2);
};
module.exports = (server) => {
server.route({
method: 'GET',
path: '/mem-fast',
config: {
handler: (req, reply) => {
const start = process.hrtime();
anotherLeak.push({
longStr: new Array(Math.ceil(anotherLeak.length * 1.5)).map((v, i) => i)
});
console.log('mem-fast %d', Math.ceil(anotherLeak.length * 1.5));
const end = process.hrtime(start);
reply(prettyHrtime(end));
}
}
});
server.route({
method: 'GET',
path: '/mem-slow',
2016-11-21 15:18:12 +02:00
config: {
handler: (req, reply) => {
const start = process.hrtime();
const originalLeak = theLeak;
const unused = () => {
// referencig something that is going to be replaced
if (originalLeak) {
console.log("hi");
}
};
theLeak = {
longStr: new Array(1000).join('*')
2016-11-21 15:18:12 +02:00
};
anotherLeak.push(anotherLeak.length);
console.log('mem-slow %d', anotherLeak.length);
2016-11-21 15:18:12 +02:00
const end = process.hrtime(start);
reply(prettyHrtime(end));
}
}
});
server.route({
method: 'GET',
path: '/cpu',
config: {
handler: (req, reply) => {
const start = process.hrtime();
fibonacci(40);
const end = process.hrtime(start);
reply(prettyHrtime(end));
}
}
});
};