Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

IDBTransaction: durability property

Baseline2024
Newly available

Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.

Thedurability read-only property of theIDBTransaction interface returns the durability hint the transaction was created with.This is a hint to the user agent of whether to prioritize performance or durability when committing the transaction.

The value of this property is defined in theoptions.durability parameter when creating a transaction usingIDBDatabase.transaction().

Value

Any of the following literalstrings:

"strict"

The user agent may consider that the transaction has successfully committed only after verifying that all outstanding changes have been successfully written to a persistent storage medium.

"relaxed"

The user agent may consider that the transaction has successfully committed as soon as all outstanding changes have been written to the operating system, without subsequent verification.

"default"

The user agent should use its default durability behavior for the storage bucket.This is the default for transactions if not otherwise specified.

Examples

For a full working example, see ourTo-do Notifications app (view example live).

Specifications

Specification
Indexed Database API 3.0
# dom-idbtransaction-durability

Browser compatibility

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp