TIME

TIME
Available since:
Redis Open Source 2.6.0
Time complexity:
O(1)
ACL categories:
@fast,
Compatibility:
Redis Software and Redis Cloud compatibility

The TIME command returns the current server time as a two items lists: a Unix timestamp and the amount of microseconds already elapsed in the current second. Basically the interface is very similar to the one of the gettimeofday system call.

Examples

redis> TIME
1) "1784722081"
2) "827551"
redis> TIME
1) "1784722081"
2) "828843"

Redis Software and Redis Cloud compatibility

Redis
Software
Redis
Cloud
Notes
✅ Standard
✅ Active-Active
✅ Standard
✅ Active-Active

Return information

Array reply: specifically, a two-element array consisting of the Unix timestamp in seconds and the microseconds' count.
RATE THIS PAGE
Back to top ↑