Hello!
On Thu, Nov 20, 2014 at 3:39 PM, Gaurav Kumar wrote:
> The first few bytes of dataToPush printed in logs are-
> \x1f\x8b\x08\x00\x00\x00\x00\x00\x00\x03\x94\x50\x4d\x4f\xe3\x30\x10\x3d\xb3\xbf
> Whereas output LINDEX myList 0 is - (snipped for brevity)
\x1f\x8b\b\x00\x00\x00\x00\x00\x00\x03\x94PMO\xe30\x10=\xb3\xbfb\x1a$\xbc{\xb0\
>
These two look equivalent to me. Are you aware that
1. \x08 is exactly \b?
$ perl -e 'print "\x08"' | od -c
0000000 \b
0000001
2. \x50 is exactly P?
$ perl -e 'print "\x50"'|od -c
0000000 P
0000001
3. \x4d is exactly M?
$ perl -e 'print "\x4d"'|od -c
0000000 M
0000001
I could go on :)
Try compare their binary forms instead of their escaped forms which
may have equivalent variants to lead to confusions.
Regards,
-agentzh