1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21:
<?php
namespace qdb;
/**
* The following settings can be changed in `php.ini`.
*
* ### `quasardb.log_level`
*
* Specifies the log verbosity.
*
* Allowed values are `detailed`, `debug`, `info`, `warning`, `error`, `panic`. The default is `panic`.
*
* ### `quasardb.persitent`
*
* Enables persistent connections.
*
* Can be set to `0` to disable or to `1` to enable persistent connections.
* The default is `1` (enabled).
*/
function Configuration();
?>