Skip to content

Commit

Permalink
Add another file and remove table-wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
kodster28 committed Aug 13, 2024
1 parent 1aacbb5 commit 203b712
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,13 @@ 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:

{{<table-wrap>}}

| | Paid plan |
| -------------------------------- | -------------------------- |
| Read request units<sup>1,2</sup> | 1 million, + $0.20/million |
| Write request units<sup>1</sup> | 1 million, + $1.00/million |
| Delete requests<sup>3</sup> | 1 million, + $1.00/million |
| Stored data<sup>4</sup> | 1 GB, + $0.20/ GB-month |

{{</table-wrap>}}

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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,15 @@

---

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:

| | Paid plan |
| -------------------------------- | -------------------------- |
| Read request units<sup>1,2</sup> | 1 million, + $0.20/million |
| Write request units<sup>3</sup> | 1 million, + {props.one}.00/million |
| Delete requests<sup>4</sup> | 1 million, + {props.one}.00/million |
| Write request units<sup>3</sup> | 1 million, + $1.00/million |
| Delete requests<sup>4</sup> | 1 million, + $1.00/million |
| Stored data<sup>5</sup> | 1 GB, + $0.20/ GB-month |

<sup>1</sup> 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.
Expand Down

0 comments on commit 203b712

Please sign in to comment.