Skip to content

Commit 4e33966

Browse files
AUTO: Sync ScalarDB docs in Japanese to docs site repo (#1231)
Co-authored-by: josh-wong <[email protected]>
1 parent 3dba5ba commit 4e33966

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/version-3.14/glossary.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ displayed_sidebar: docsJapanese
7070

7171
線形化可能性は、分散システムにおける強力な一貫性モデルであり、操作はリアルタイム順序付けと一致する順序でアトミックに発生し、各操作は開始から終了までの間に有効になります。
7272

73-
## 同時実行制御
73+
## 並行性制御
7474

75-
データベースの同時実行制御は、通常、ロックやタイムスタンプ順序付けなどのメカニズムを通じて、データの不整合を引き起こすことなく複数のトランザクションが同時に発生することを保証します。
75+
データベースの並行性制御は、通常、ロックやタイムスタンプ順序付けなどのメカニズムを通じて、データの不整合を引き起こすことなく複数のトランザクションが同時に発生することを保証します。
7676

7777
## 読み取りコミット分離
7878

i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/version-3.14/scalardb-cluster-dotnet-client-sdk/getting-started-with-two-phase-commit-transactions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ CRUD または SQL 操作を完了したら、トランザクションをコミ
119119
await transaction.PrepareAsync();
120120
```
121121

122-
次に、同時実行制御プロトコルに応じて、次のようにコーディネーターとすべての参加者でトランザクションを検証する必要がある場合があります。
122+
次に、並行性制御プロトコルに応じて、次のようにコーディネーターとすべての参加者でトランザクションを検証する必要がある場合があります。
123123

124124
```c#
125125
await transaction.ValidateAsync();

i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/version-3.14/two-phase-commit-transactions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ try {
176176

177177
#### トランザクションを検証する
178178

179-
同時実行制御プロトコルに応じて、以下に示すように、`prepare()` の後、`commit()` の前に、すべての Coordinator および参加者プロセスで `validate()` を呼び出す必要があります。
179+
並行性制御プロトコルに応じて、以下に示すように、`prepare()` の後、`commit()` の前に、すべての Coordinator および参加者プロセスで `validate()` を呼び出す必要があります。
180180

181181
```java
182182
// Prepare phase 1: Prepare the transaction in all the Coordinator and participant processes.

0 commit comments

Comments
 (0)