ZRANGEBYLEX:Details on strings comparison
https://redis.io/commands/zrangebylex
http://redisdoc.com/sorted_set/zrangebylex.html
命令会使用 C 语言的 memcmp() 函数, 对集合中的每个成员进行逐个字节的对比(byte-by-byte compare), 并按照从低到高的顺序, 返回排序后的集合成员。 如果两个字符串有一部分内容是相同的话, 那么命令会认为较长的字符串比较短的字符串要大。