python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Will this javascript function cause stack overflow
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 ...

pranav panday
Votes: 0
Answers: 0
Where is node-redis v4 documentation/migration guide?
node-redis refactored its API in v4 to support Promises. For some reason, they also decided to change the signature of most commands, which now don't obey any apparent logic. For example, this is the ...
Federico
Votes: 0
Answers: 1
What is the type returned by createClient?
I'm a TS noob but been writing some small services using TS. I'm working on a CLI tool build on top of node-redis. Great redis client.
What is the type of client in the following snippet?
import { cre...

dina
Votes: 0
Answers: 1
Manipulating nested array of obects in RedisJSON
I have a JSON with nested array like below to be saved in Redis. I am using RedisJSON module to save the data as JSON.
customer:12345 : {
info : {
key1: val1,
key2: val2,
k...
Giri
Votes: 0
Answers: 1