public static func pttl(_ key: RedisKey) -> RedisCommand<RedisKey.Lifetime> {
        let args = [RESPValue(from: key)]
        return .init(keyword: "PTTL", arguments: args) {
            return .init(milliseconds: try $0.map())
        }