AlinsRan commented on code in PR #10198:
URL: https://github.com/apache/apisix/pull/10198#discussion_r1325319496
##########
apisix/http/router/radixtree_host_uri.lua:
##########
@@ -162,12 +161,12 @@ end
function _M.matching(api_ctx)
core.log.info("route match mode: radixtree_host_uri")
- core.table.clear(match_opts)
+ local match_opts = core.tablepool.fetch("route_match_opts", 0, 16)
match_opts.method = api_ctx.var.request_method
match_opts.remote_addr = api_ctx.var.remote_addr
match_opts.vars = api_ctx.var
match_opts.host = api_ctx.var.host
- match_opts.matched = core.tablepool.fetch("matched_route_record", 0, 4)
Review Comment:
I have decided to prioritize performance.
udpate!
##########
apisix/http/router/radixtree_host_uri.lua:
##########
@@ -78,10 +78,11 @@ local function push_host_router(route, host_routes,
only_uri_routes)
vars = route.value.vars,
filter_fun = filter_fun,
handler = function (api_ctx, match_opts)
+ local matched = core.table.deepcopy(match_opts.matched)
Review Comment:
I have decided to prioritize performance.
udpate!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]