Skip to content

Commit efd3905

Browse files
committed
Rewording extend with continue.
1 parent 0f5d328 commit efd3905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/d1/concepts/read-replication.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ When starting a Session with `withSession` in your Worker code, you can specify
8787
When continuing an existing Session started with `withSession`, you can provide a `bookmark` parameter from an existing Session.
8888

8989
- `bookmark`:
90-
- Continues an existing Session using the provided `bookmark` as the reference point. If you already have a `bookmark` from a different part of the application, you can extend that Session using the same `bookmark`, which ensures you read from a version of the database which is at least as up-to-date as the `bookmark`.
90+
- Continues an existing Session using the provided `bookmark` as the reference point. If you already have a `bookmark` from a different part of the application, you can continue that Session using the same `bookmark`, which ensures you read from a version of the database which is at least as up-to-date as the `bookmark`.
9191
- Subsequent queries in the Session have sequential consistency.
9292
- You can return the last encountered `bookmark` for a given Session using `sess.getBookmark()`.
9393
- Example use-case: (Continuation of the previous example used in `first-primary`) Reading the score-table of an ongoing sports tournament. A user may have started a web browser session and already has a `bookmark`. D1 can serve subsequent read queries within the same Session which is logically consistent by using the `bookmark`.

0 commit comments

Comments
 (0)