Skip to content

Commit 979d4e4

Browse files
authored
Merge pull request #11244 from akkrishnakumar/development
Remove Beta flag for Optimistic Locking
2 parents fc0da0a + e78c9c0 commit 979d4e4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

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

87
## Introduction
98

109
{{% alert color="info" %}}
11-
This feature is available in Beta starting with Mendix version 11.5.0.
10+
This feature is Generally Available in Mendix version 11.11.0 and above.
11+
This feature was available as Beta since Mendix version 11.5.0.
1212
{{% /alert %}}
1313

1414
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)