We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I wonder if I do:
pgmoon = require('pgmoon')
in init_by_lua_block, and then in a location handler, use content_by_lua_file with
local pg = pgmoon.new({...}) -- Do work pg:keepalive()
Will I get the same pool shared among all workers ?
The text was updated successfully, but these errors were encountered:
requiring the library has no side effects other than bringing the code in the scope. It won't change how the cosocket pool works.
(I actually don't know if cosocket pools are per-worker or per-nginx)
Sorry, something went wrong.
No branches or pull requests
Hi,
I wonder if I do:
in init_by_lua_block,
and then in a location handler, use content_by_lua_file with
Will I get the same pool shared among all workers ?
The text was updated successfully, but these errors were encountered: