am trying to figure out if the following code will cause stack overflow or not, can someone please help
function testing() {
setTimeout(() => {
testing()
},100 )
}
testing()
I am trying to use redis blpop command as an event queue and want to process the next message as soon as I am done with one