mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Add setting for turning off callback protections
Might improve (CPU) performance at the risk of triggering top level errors.
This commit is contained in:
parent
7acd39cdbe
commit
8b9da40260
1 changed files with 6 additions and 0 deletions
|
@ -74,6 +74,9 @@ local default_config = { __index = {
|
|||
-- Whether to kill connections in case of callback errors.
|
||||
fatal_errors = false;
|
||||
|
||||
-- Or disable protection (like server_select) for potential performance gains
|
||||
protect_listeners = true;
|
||||
|
||||
-- Attempt writes instantly
|
||||
opportunistic_writes = false;
|
||||
}};
|
||||
|
@ -192,6 +195,9 @@ function interface:on(what, ...)
|
|||
self:noise("Missing listener 'on%s'", what); -- uncomment for development and debugging
|
||||
return;
|
||||
end
|
||||
if not cfg.protect_listeners then
|
||||
return listener(self, ...);
|
||||
end
|
||||
local onerror = self.listeners.onerror or traceback;
|
||||
local ok, err = xpcall(listener, onerror, self, ...);
|
||||
if not ok then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue