can I get server current time using node.js ?
MarwaAbed opened this issue · 2 comments
MarwaAbed commented
Hi all,
please, I need to get the Redis server insert time put I didn't find a way to do that the only one that was useful is to me is to insert the current Redis server time that found in this site, did anyone know how to use time command with node.js have a way to get the insert time?
stockholmux commented
@MarwaAbed TIME is supported. In node_redis it should be client.time(function(err,resp) { ... }).
MarwaAbed commented
thank you Mr. Kyle J. Davis