In what cases should redisAsyncConnect be used, instead of redisConnect? What is the difference in implementation of both functions?
Asked
Active
Viewed 1,104 times
1 Answers
1
redisConnect uses synchronous or blocking socket IO. redisAsyncConnect uses asynchronous or non-blocking IO.
If you need further explanation, then you need an education in network communications, beyond the scope of this answer!
The difference in implementation of both functions can be found on github:

stack user
- 835
- 1
- 9
- 28