Copyright © 2003 Greg Fausak
Table of Contents
exec_query_threshold
max_db_queries
List of Examples
Module description
The following modules must be loaded before this module:
No dependencies on other OpenSIPS modules.
The following libraries or applications must be installed before running OpenSIPS with this module loaded:
PostgreSQL library - e.g., libpq5.
PostgreSQL devel library - to compile the module (e.g., libpq-dev).
If queries take longer than 'exec_query_threshold' microseconds, warning messages will be written to logging facility.
Default value is 0 - disabled.
Example 1.1. Set exec_query_threshold parameter
... modparam("db_postgres", "exec_query_threshold", 60000) ...
The maximum number of database queries to be executed. If this parameter is set improperly, it is set to default value.
Default value is 2.
Example 1.2. Set max_db_queries parameter
... modparam("db_postgres", "max_db_queries", 2) ...
NONE
Notes about installation and running.