You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/refguide/runtime/custom-settings/_index.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,7 +146,6 @@ The settings below influence the behavior of the log files. These settings can o
146
146
| <aid="DataStorageEnableDiagnostics"href="#DataStorageEnableDiagnostics">DataStorage.EnableDiagnostics</a> | This setting can be used to generate a uniqueness constraint violation report. | false |
147
147
| <aid="UseNetworkTimeout"href="#UseNetworkTimeout">UseNetworkTimeout</a> | This setting is applied to PostgreSQL. It affects the timeout mechanism used when reserving new ids for Mendix objects. If set to true, the socket level request timeout is used. In that case, the request timeout is handled within the operating system. If set to false, the timeout is handled by Mendix runtime. For other databases, timeouts are always handled by Mendix runtime. | true |
148
148
| <aid="JdbcLoginTimeout"href="#JdbcLoginTimeout">JdbcLoginTimeout</a> | This setting defines the database connection establishment time in milliseconds. | 5000 (5 seconds) |
149
-
| <aid="SynchronizationCleanupInterval"href="#SynchronizationCleanupInterval">com.mendix.offline.SynchronizationCleanupInterval</a> | This setting defines how often objects of type `System.OfflineSynchronizationHistory` are cleaned up. | 90 (90 days) |
150
149
| <aid="DataStorageOptimizeSecurityColumns"href="#DataStorageOptimizeSecurityColumns">DataStorage.OptimizeSecurityColumns</a> | When true, query columns generated to evaluate XPath constraints in access rules are optimized to `true` if the runtime can determine that the value will always be true for the objects that the query returns. This is almost always an improvement, but we have seen cases where the PostgreSQL query planner has worse performance for the simpler query. | true |
151
150
152
151
### Connection Pooling {#connection-pooling}
@@ -286,6 +285,8 @@ The settings below influence the behavior of the Mendix web client.
286
285
| Name | Description | Default Value |
287
286
| --- | --- | --- |
288
287
| <aid="EnableKeepAlive"href="#EnableKeepAlive">EnableKeepAlive</a> | Defines whether the web client sends a keep alive request every `SessionTimeout`/2 milliseconds in order to prevent a session timeout. Each click in the browser also acts as `KeepAlive`. Disabling this property will result in the user being logged out automatically after `SessionTimeout` milliseconds of inactivity (default 10 minutes), even if the browser remains open. See `SessionTimeout` in the next section for more information. | true |
288
+
| <aid="DeleteAutoCommittedObjectsAfterSync"href="#DeleteAutoCommittedObjectsAfterSync">com.mendix.offline.DeleteAutoCommittedObjectsAfterSync</a> | Defines if auto-committed created during offline synchronization will be deleted from the database immediately.<br/>*Deprecated – should only be changed if you have compatibility issues upgrading from Mendix version 9.*| true |
289
+
| <aid="SynchronizationCleanupInterval"href="#SynchronizationCleanupInterval">com.mendix.offline.SynchronizationCleanupInterval</a> | This setting defines how often objects of type `System.OfflineSynchronizationHistory` are cleaned up. | 90 (90 days) |
289
290
| <aid="commendixwebuiAuthTokenTimeout"href="#commendixwebuiAuthTokenTimeout">com.<wbr>mendix.<wbr>webui.<wbr>AuthTokenTimeout</a> | Determines how many minutes your token will remain valid before re-authenticating using your full credentials. If no value is set, the token will expire after One year. | Introduced in Mendix 11.3. Use [com.<wbr>mendix.<wbr>webui.<wbr>HybridAppLoginTimeOut](#commendixwebuiHybridAppLoginTimeOut) in earlier versions. |
290
291
| <aid="commendixwebuiHybridAppLoginTimeOut"href="#commendixwebuiHybridAppLoginTimeOut">com.<wbr>mendix.<wbr>webui.<wbr>HybridAppLoginTimeOut</a> | Legacy alias of <aid="commendixwebuiAuthTokenTimeout"href="#commendixwebuiAuthTokenTimeout">com.<wbr>mendix.<wbr>webui.<wbr>AuthTokenTimeout</a> ||
291
292
| <aid="commendixwebuiFeedbackSizeWarningThreshold"href="#commendixwebuiFeedbackSizeWarningThreshold">com.<wbr>mendix.<wbr>webui.<wbr>FeedbackSizeWarningThreshold</a> | A warning is logged when the feedback size exceeds the threshold. Feedback is sent from server to client to instruct (for example, to refresh objects or to open a page). They are serialized as "instructions" in the server response. If there are too many instructions, this can have performance implications, as they all have to be serialized to the client. For this reason, a warning is logged when the threshold is exceeded. | 5000 |
Copy file name to clipboardExpand all lines: content/en/docs/refguide/runtime/custom-settings/tricky-custom-runtime-settings.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,6 @@ The following custom settings can be configured:
28
28
| Name | Description | Default value |
29
29
| --- | --- | --- |
30
30
|`SessionTimeout`| Defines after how much time the session becomes invalid (in milliseconds). After that timeout, a session becomes applicable for removal. The session won't be destroyed until the next time the cluster manager evaluates the active sessions. | 600000 (10 minutes) |
31
-
|`com.mendix.offline.DeleteAutoCommittedObjectsAfterSync`| Defines if auto-committed created during offline synchronization will be deleted from the database immediately. | true |
32
31
|`ClusterManagerActionInterval`| The interval (in milliseconds) used for performing all cluster manager actions. These actions include unblocking users and removing invalid sessions. If nothing is specified, the interval is half the `SessionTimeout`. | 300000 (5 minutes) |
33
32
|`SessionKeepAliveUpdatesInterval`| Defines after how much time expired sessions can be removed from the database. | one sixth of the value configured for the `SessionTimeout` setting; if the `SessionTimeout` is not set, this value defaults to 100000 (100 seconds) |
0 commit comments