Is a cache TTL set in seconds or milliseconds?
It depends on the system. HTTP `Cache-Control: max-age` and Redis `EXPIRE` use seconds, while many JavaScript APIs use milliseconds. This tool shows both so you copy the right unit — a common bug is passing a seconds value where milliseconds are expected, making a cache expire 1000× too soon.