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
all sha1's are in binary form if they are keys. If they are mixed with strings in values, they may sometimes be in hex
125afaaefe99189eb2cec5aafc470770b79abbd0 indeed does not have a parent, only a child, hence in obb2cf but not in bb2cf
I am surprised how bb2cf does not have binary keys:
for i in {0..31}; do time zcat bb2cfFullV{$i,$((i+32)),$((i+64)),$((i+96))}.s | ~/lookup/h2fbbBinSorted.perl /fast/bb2cfFullV.$i.tch; done
When I was developing the new python driver, I was surprised to find that bb2cf never worked for me.
getValues
won't work given any blob sha as well:Digging into the issue, I found out that the keys in tokyocabinet hashtables are encoded hex strings:
Instead of bytes, as the ones of obb2cf:
And it works with the following walkaround:
Is it intended, or you are planning to fix that?
The text was updated successfully, but these errors were encountered: