Possible problem if key has no children but has own data
Opened this issue · 0 comments
killmenot commented
ewd-redis-globals/lib/apis/deleteNode.js
Lines 100 to 105 in 0cca19f
db.createNode('rob', ['a'], 'hello');
db.createNode('rob', ['a', 'b'], 'world');
db.deleteNode('rob', ['a', 'b']);
by using the same logic for ewd-memory-globals
project I got the following
it seems it deletes node:rob:a
but it shouldn't.
@robtweed WDYT?