2

When the socket disconnect event is fired with socket.io (node.js), for how long will the socket's data still be available?

If I have a store (like redis) that asynchronously returns data, is it safe to still perform lookups?

I need to get all data of a socket in order to save the socket's state when it disconnects.

Thanks a lot.

Tom
  • 8,536
  • 31
  • 133
  • 232

1 Answers1

6

The server has 'client store expiration' option, it's set to 15 (sec) by default.

3rdEden
  • 4,388
  • 1
  • 20
  • 18