Skip to content

Commit 012af00

Browse files
authored
Merge pull request #10500 from jdiehl/patch-552267
Clarified that optimistic locking is in beta
2 parents eb007df + a3fee66 commit 012af00

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

content/en/docs/refguide/runtime/optimistic-locking.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
title: "Optimistic Locking"
33
url: /refguide/optimistic-locking/
44
description: "Describes optimistic locking support."
5+
beta: true
56
---
67

78
## Introduction
89

910
{{% alert color="info" %}}
10-
This feature is available from Mendix 11.5.0.
11+
This feature is available in Beta starting with Mendix version 11.5.0.
1112
{{% /alert %}}
1213

1314
Optimistic locking is a strategy used in concurrent systems to prevent lost updates when multiple users or processes try to modify the same piece of data at the same time. Instead of locking the data immediately, and preventing other users from accessing it, optimistic locking allows multiple users to read, and potentially modify, the same data concurrently. In optimistic locking, the assumption is that conflicts are rare, so it checks for conflicts only at the very last moment, when an update is attempted.

0 commit comments

Comments
 (0)