Fir Account

Results 2 issues of Fir Account

I have tried creating a connection with pool_size = 1 and backlog=10 but every concurrent request creating new connection. For 5 concurrent request this is the output. netstat | grep...

`local red = redis:new() red:set_timeout(10000) local options_table = {} options_table.pool_size = 1 options_table.backlog = 1 local ok, err = red:connect(redis_endpoint, redis_port, options_table) ngx.say("reused times: ", red:get_reused_times())` How to make sure...