changeset 468:8f1f26680527 pg-transactions

news
author Alain Mazy <am@osimis.io>
date Mon, 05 Feb 2024 09:47:40 +0100
parents ff84104f7842
children 302f3c2b1c34
files PostgreSQL/NEWS
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/PostgreSQL/NEWS	Mon Feb 05 09:43:14 2024 +0100
+++ b/PostgreSQL/NEWS	Mon Feb 05 09:47:40 2024 +0100
@@ -1,13 +1,14 @@
 Pending changes in the mainline
 ===============================
 
-* Experimental debug feature:
+* Transaction Mode:
   Introduced a new configuration to select the transaction isolation level
     "TransactionMode": "Serializable"
   Allowed values: "Serializable", "ReadCommitted".
   The "Serializable" mode was the only available value up to now.  It is still the default
   value now.
-  The "ReadCommitted" is possible now due to rewrites of SQL queries.
+  The "ReadCommitted" is possible now due to rewrites of SQL queries and notably improves
+  the Orthanc ability to ingest data from multiple sources in parallel.
 * internals:
   - Added a UNIQUE constraint on Resources.publicId to detect DB inconsistencies
 * New "EnableVerboseLogs" configuration to show SQL statements being executed.