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
Positive integers are simply indexed as zero-filled strings, but negative flip the leading '0' to a '-'. While this makes all negatives less than all positives, it leads to misbehavior on querying a range of negative values on an indexed integer property.
A better scheme might be to simply index the integers as 1's complement with a base64 encoding, ensuring order and a more compact representation.
The text was updated successfully, but these errors were encountered:
mhluongo
added a commit
to mhluongo/neo4django
that referenced
this issue
Jan 12, 2014
Positive integers are simply indexed as zero-filled strings, but negative flip the leading '0' to a '-'. While this makes all negatives less than all positives, it leads to misbehavior on querying a range of negative values on an indexed integer property.
A better scheme might be to simply index the integers as 1's complement with a base64 encoding, ensuring order and a more compact representation.
The text was updated successfully, but these errors were encountered: