Skip to content

Commit d2e9ef4

Browse files
committed
Breaking: require snapshots to be created synchronously
Ref Level/community#118.
1 parent 9f0225a commit d2e9ef4

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,6 @@ Get a value from the database by `key`. The optional `options` object may contai
282282

283283
Returns a promise for the value. If the `key` was not found then the value will be `undefined`.
284284

285-
If the database indicates support of snapshots via `db.supports.snapshots` then `db.get()` _should_ read from a snapshot of the database, created at the time `db.get()` was called. This means it should not see the data of simultaneous write operations. However, this is currently not verified by the [abstract test suite](#test-suite).
286-
287285
### `db.getMany(keys[, options])`
288286

289287
Get multiple values from the database by an array of `keys`. The optional `options` object may contain:
@@ -293,8 +291,6 @@ Get multiple values from the database by an array of `keys`. The optional `optio
293291

294292
Returns a promise for an array of values with the same order as `keys`. If a key was not found, the relevant value will be `undefined`.
295293

296-
If the database indicates support of snapshots via `db.supports.snapshots` then `db.getMany()` _should_ read from a snapshot of the database, created at the time `db.getMany()` was called. This means it should not see the data of simultaneous write operations. However, this is currently not verified by the [abstract test suite](#test-suite).
297-
298294
### `db.put(key, value[, options])`
299295

300296
Add a new entry or overwrite an existing entry. The optional `options` object may contain:
@@ -1394,12 +1390,16 @@ The default `_close()` is an async noop. In native implementations (native addon
13941390

13951391
Get a value by `key`. The `options` object will always have the following properties: `keyEncoding` and `valueEncoding`. Must return a promise. If an error occurs, reject the promise. Otherwise resolve the promise with the value. If the `key` was not found then use `undefined` as value.
13961392

1393+
If the database indicates support of snapshots via `db.supports.snapshots` then `db._get()` must read from a snapshot of the database. That snapshot (or similar mechanism) must be created synchronously when `db._get()` is called, before asynchronously reading the value. This means it should not see the data of write operations that are scheduled immediately after `db._get()`.
1394+
13971395
The default `_get()` returns a promise for an `undefined` value. It must be overridden.
13981396

13991397
### `db._getMany(keys, options)`
14001398

14011399
Get multiple values by an array of `keys`. The `options` object will always have the following properties: `keyEncoding` and `valueEncoding`. Must return a promise. If an error occurs, reject the promise. Otherwise resolve the promise with an array of values. If a key does not exist, set the relevant value to `undefined`.
14021400

1401+
Snapshot behavior of `db._getMany()` must be the same as described for `db._get()` above.
1402+
14031403
The default `_getMany()` returns a promise for an array of values that is equal in length to `keys` and is filled with `undefined`. It must be overridden.
14041404

14051405
### `db._put(key, value, options)`

UPGRADING.md

+5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This document describes breaking changes and how to upgrade. For a complete list
1616
- [2.1. Promises all the way](#21-promises-all-the-way)
1717
- [2.2. Ticks](#22-ticks)
1818
- [2.3. A new way to abort iterator work](#23-a-new-way-to-abort-iterator-work)
19+
- [2.4. Snapshots must be synchronous](#24-snapshots-must-be-synchronous)
1920
- [1.0.0](#100)
2021
- [1. API parity with `levelup`](#1-api-parity-with-levelup)
2122
- [1.1. New: promises](#11-new-promises)
@@ -211,6 +212,10 @@ _This section is incomplete._
211212

212213
Closing an iterator now aborts work, if supported by implementation. The undocumented `abortOnClose` option of iterators (added as a workaround for `many-level`) has been removed in favor of AbortSignal.
213214

215+
#### 2.4. Snapshots must be synchronous
216+
217+
If an implementations indicates support of snapshots via `db.supports.snapshots` then the `db._get()` and `db._getMany()` methods are now required to synchronously create their snapshot, rather than asynchronously. For details, please see the [README](./README.md#db_getkey-options). This is a documentation-only change because the abstract test suite cannot verify it.
218+
214219
## 1.0.0
215220

216221
**Introducing `abstract-level`: a fork of [`abstract-leveldown`](https://github.com/Level/abstract-leveldown) that removes the need for [`levelup`](https://github.com/Level/levelup), [`encoding-down`](https://github.com/Level/encoding-down) and more. An `abstract-level` database is a complete solution that doesn't need to be wrapped. It has the same API as `level(up)` including encodings, promises and events. In addition, implementations can now choose to use Uint8Array instead of Buffer. Consumers of an implementation can use both. Sublevels are builtin.**

0 commit comments

Comments
 (0)