So...this seems to be close to the root of the new problems.
- Store some stuff.
db.jsonld.del({}, console.log.bind(console))
db.get({}, (err, list) => console.log(list.length)) ... returns 0
Doing the same with db.del({}, console.log.bind(console)) doesn't empty anything--which would be the expected behavior.
I'm reading through the code now to see where I can help. Thanks!
So...this seems to be close to the root of the new problems.
db.jsonld.del({}, console.log.bind(console))db.get({}, (err, list) => console.log(list.length))... returns0Doing the same with
db.del({}, console.log.bind(console))doesn't empty anything--which would be the expected behavior.I'm reading through the code now to see where I can help. Thanks!