You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -282,8 +282,6 @@ Get a value from the database by `key`. The optional `options` object may contai
282
282
283
283
Returns a promise for the value. If the `key` was not found then the value will be `undefined`.
284
284
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
-
287
285
### `db.getMany(keys[, options])`
288
286
289
287
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
293
291
294
292
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`.
295
293
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
-
298
294
### `db.put(key, value[, options])`
299
295
300
296
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
1394
1390
1395
1391
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.
1396
1392
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
+
1397
1395
The default `_get()` returns a promise for an `undefined` value. It must be overridden.
1398
1396
1399
1397
### `db._getMany(keys, options)`
1400
1398
1401
1399
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`.
1402
1400
1401
+
Snapshot behavior of `db._getMany()` must be the same as described for `db._get()` above.
1402
+
1403
1403
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.
Copy file name to clipboardexpand all lines: UPGRADING.md
+5
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ This document describes breaking changes and how to upgrade. For a complete list
16
16
-[2.1. Promises all the way](#21-promises-all-the-way)
17
17
-[2.2. Ticks](#22-ticks)
18
18
-[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)
19
20
-[1.0.0](#100)
20
21
-[1. API parity with `levelup`](#1-api-parity-with-levelup)
21
22
-[1.1. New: promises](#11-new-promises)
@@ -211,6 +212,10 @@ _This section is incomplete._
211
212
212
213
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.
213
214
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
+
214
219
## 1.0.0
215
220
216
221
**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