I'm using setTimeout in Node.js and it seems to behave differently from client-side setTimeout in that it returns an object instead of a number. I want to store this in redis, but since redis only stores strings, I need to convert the object to a string. However, using JSON.stringify throws a circular reference error. How can I store this object in redis if I want to be able to fetch it from redis and call clearTimeout on it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
| show 10 more comments |
|
You cannot store the object in Redis. The One idea would be to create your own associative array in memory, and store the index in Redis. For example:
|
|||||||||||
|
|
This code is used when the timeouts need not be persistent across server restarts
If you need timeouts to be persistent across server restarts, then you might need to store
|
|||||||||||||
|
setTimeoutcall has anything to do with the circular reference error. stackoverflow.com/questions/1493453/… – Trevor Jul 2 '12 at 20:40setTimeoutcreates this object:{ _idleTimeout: 1000000000, _idlePrev: { _idleNext: [Circular], _idlePrev: [Circular], ontimeout: [Function] }, _idleNext: { _idleNext: [Circular], _idlePrev: [Circular], ontimeout: [Function] }, _onTimeout: [Function], _idleStart: Mon, 02 Jul 2012 20:28:18 GMT }– user730569 Jul 2 '12 at 20:42_idleNextand_idlePrevkeys seem to be circular references... – user730569 Jul 2 '12 at 20:42RedisStore-- see e.g. this answer of mine. – Linus G Thiel Jul 3 '12 at 11:09