函数分类 | 函数 |
---|---|
lua原生函数 | 提供全局、math、os、string、table五种lua函数库的函数。 |
请求处理相关函数 | ctyun.req.start_time、ctyun.req.raw_header、ctyun.req.get_method、ctyun.req.get_headers、ctyun.req.set_header、ctyun.req.get_full_body_data、ctyun.req.get_origin_url、ctyun.req.set_uri、ctyun.req.get_uri_args、ctyun.req.set_uri_args、ctyun.req.set_upstream_url、ctyun.req.set_cache、ctyun.req.enroll_header_back。 |
响应处理相关函数 | ctyun.resp.get_headers、ctyun.resp.get_code、ctyun.resp.set_header、ctyun.resp.set_limit_rate、ctyun.resp.set_output、ctyun.resp.set_code、ctyun.resp.exit。 |
时间相关函数 | ctyun.now、ctyun.time、ctyun.localtime、ctyun.utctime、ctyun.today、ctyun.update_time、ctyun.cookie_time、ctyun.http_time、ctyun.parse_http_time、ctyun.sleep。 |
编解码相关函数 | ctyun.json.encode、ctyun.json.decode、ctyun.encode_args、ctyun.decode_args、ctyun.unescape_uri、ctyun.escape_uri、ctyun.decode_base64、ctyun.encode_base64。 |
加解密相关函数 | ctyun.crc32_long、ctyun.crc32_short、ctyun.sha1_bin、ctyun.md5、ctyun.md5_bin、ctyun.hmac_sha1。 |
正则表达式相关函数 | ctyun.re.match、ctyun.re.find、ctyun.re.gmatch、ctyun.re.sub、ctyun.re.gsub。 |
访问远程数据相关函数 | ctyun.query_remote、ctyun.query_get_cache。 |
全局字典相关函数 | ctyun.dict.set、ctyun.dict.get、ctyun.dict.delete、ctyun.dict.capacity、ctyun.dict.free_space。 |
异步处理相关函数 | ctyun.thread.run。 |
其他功能函数 | ctyun.get_ip_location、ctyun.split_string。 |