presidium 3.7.1 → 3.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -358,8 +358,8 @@ const data = await googleChromeDevTools.Page.navigate({
|
|
|
358
358
|
const DiskHashTable = require('presidium-db/DiskHashTable')
|
|
359
359
|
|
|
360
360
|
const ht = new DiskHashTable({
|
|
361
|
-
storageFilepath: '/path/to/storage-file',
|
|
362
|
-
headerFilepath: '/path/to/header-file',
|
|
361
|
+
storageFilepath: '/path/to/ht-storage-file',
|
|
362
|
+
headerFilepath: '/path/to/ht-header-file',
|
|
363
363
|
initialLength: 1024,
|
|
364
364
|
})
|
|
365
365
|
await ht.init()
|
|
@@ -377,8 +377,8 @@ await ht.delete('my-key')
|
|
|
377
377
|
const DiskSortedHashTable = require('presidium-db/DiskSortedHashTable')
|
|
378
378
|
|
|
379
379
|
const sortedHt = new DiskSortedHashTable({
|
|
380
|
-
storageFilepath: '/path/to/storage-file',
|
|
381
|
-
headerFilepath: '/path/to/header-file',
|
|
380
|
+
storageFilepath: '/path/to/sortedHt-storage-file',
|
|
381
|
+
headerFilepath: '/path/to/sortedHt-header-file',
|
|
382
382
|
initialLength: 1024,
|
|
383
383
|
})
|
|
384
384
|
await sortedHt.init()
|