diff --git a/README.md b/README.md index 3f435da8..c4f01267 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ Notice how some of the configuration values are wrapped in angle brackets (e.g. // These options are primarily related to long-running tasks. "background_io": { // The number of threads dedicated to background I/O. - "threads": 3 + "threads": 6 } }, @@ -227,6 +227,10 @@ Notice how some of the configuration values are wrapped in angle brackets (e.g. "refresh_when_resource_changes_detected": true }, + // The maximum number of parallel streams that can be associated to a + // single parallel write handle. + "max_number_of_parallel_write_streams": 3, + // The buffer size used for read operations. "max_rbuffer_size_in_bytes": 8192, diff --git a/src/main.cpp b/src/main.cpp index 319fd95c..d0d4bf2e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -187,6 +187,14 @@ auto print_configuration_template() -> void "basic": {{ "timeout_in_seconds": 3600 + }}, + + "oidc": {{ + "config_host": "", + "port": 8080, + "well_known_uri": "", + "client_id": "", + "redirect_uri": "" }} }}, @@ -197,7 +205,7 @@ auto print_configuration_template() -> void }}, "background_io": {{ - "threads": 3 + "threads": 6 }} }}, @@ -223,9 +231,13 @@ auto print_configuration_template() -> void "connection_pool": {{ "size": 6, - "refresh_timeout_in_seconds": 600 + "refresh_timeout_in_seconds": 600, + "max_retrievals_before_refresh": 16, + "refresh_when_resource_changes_detected": true }}, + "max_number_of_parallel_write_streams": 3, + "max_rbuffer_size_in_bytes": 8192, "max_wbuffer_size_in_bytes": 8192,