diff --git a/src/content/partials/durable-objects/durable-objects-pricing.mdx b/src/content/partials/durable-objects/durable-objects-pricing.mdx index 1d7453adbbf9c7b..9c912b785b26ae4 100644 --- a/src/content/partials/durable-objects/durable-objects-pricing.mdx +++ b/src/content/partials/durable-objects/durable-objects-pricing.mdx @@ -70,8 +70,6 @@ Total = ~$38.73 USD + $409.72 USD + Minimum $5/mo usage = $453.45 The [Transactional Storage API](/durable-objects/api/transactional-storage-api/) is only accessible from within Durable Objects. Durable Objects do not have to use the Transactional Storage API, but if your code does call methods on `state.storage`, it will incur the following additional charges: -{{}} - | | Paid plan | | -------------------------------- | -------------------------- | | Read request units1,2 | 1 million, + $0.20/million | @@ -79,8 +77,6 @@ The [Transactional Storage API](/durable-objects/api/transactional-storage-api/) | Delete requests3 | 1 million, + $1.00/million | | Stored data4 | 1 GB, + $0.20/ GB-month | -{{}} - 1. A request unit is defined as 4 KB of data read or written. A request that writes or reads more than 4 KB will consume multiple units. For example, a 9 KB write will consume three write request units. 2. List operations are billed by read request units, based on the amount of data examined. For example, a list request that returns a combined 80 KB of keys and values will be billed 20 read request units. A list request that does not return anything is billed for one read request unit. 3. Delete requests are unmetered. For example, deleting a 100 KB value will be charged one delete request. diff --git a/src/content/partials/workers/transactional_storage_api_pricing.mdx b/src/content/partials/workers/transactional_storage_api_pricing.mdx index e1004baa5de1655..4f9419a1b97ebcc 100644 --- a/src/content/partials/workers/transactional_storage_api_pricing.mdx +++ b/src/content/partials/workers/transactional_storage_api_pricing.mdx @@ -3,8 +3,6 @@ --- -import { Markdown } from "~/components" - The Durable Objects [Transactional Storage API](/durable-objects/api/transactional-storage-api) is only accessible from within Durable Objects. Durable Objects do not have to use the Transactional Storage API, but if your code does call methods on `state.storage`, it will incur the following additional charges: @@ -12,8 +10,8 @@ Durable Objects do not have to use the Transactional Storage API, but if your co | | Paid plan | | -------------------------------- | -------------------------- | | Read request units1,2 | 1 million, + $0.20/million | -| Write request units3 | 1 million, + {props.one}.00/million | -| Delete requests4 | 1 million, + {props.one}.00/million | +| Write request units3 | 1 million, + $1.00/million | +| Delete requests4 | 1 million, + $1.00/million | | Stored data5 | 1 GB, + $0.20/ GB-month | 1 A request unit is defined as 4 KB of data read or written. A request that writes or reads more than 4 KB will consume multiple units, for example, a 9 KB write will consume 3 write request units.