-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rocksdb: apply operates on memory view #191
Conversation
index.js
Outdated
const promises = [] | ||
|
||
for (const { key, core, length } of indexers) { | ||
if (core.length === 0 && length > 0) promises.push(core.get(length - 1, { timeout })) | ||
promises.push(system.get(key, { timeout })) | ||
promises.push(system.get(key, { debug: true, timeout })) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
debug
8b89b50
to
491a3b9
Compare
test/basic.js
Outdated
@@ -969,7 +1023,8 @@ test('basic - non-indexed writers 3-of-5', async t => { | |||
} | |||
}) | |||
|
|||
test('autobase should not detach the original store', async t => { | |||
// memview failing: corestore has no detach option | |||
test.skip('autobase should not detach the original store', async t => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chm-diederichs you can use setNamespace to unskip this now
test/basic.js
Outdated
@@ -1683,7 +1738,8 @@ test('basic - writer adds a writer while being removed', async t => { | |||
t.is(binfo.isRemoved, true) | |||
}) | |||
|
|||
test('basic - sessions use globalCache from corestore if it is set', async t => { | |||
// memview failing: globalCache disabled in corestore | |||
test.skip('basic - sessions use globalCache from corestore if it is set', async t => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be fine now
9c6d0dd
to
7f70678
Compare
No description provided.