私の並べ替えコマンドは
「SORT hot_ids by no_keys GET # GET msg: ->msg GET msg: ->count GET msg:*->comments」です。
redis-cli では問題なく動作しますが、RedisClient ではデータを返しません。結果は byte[][] です。結果の長さは正しいですが、配列のすべての要素が null です。
redis の応答は ...
$-1
$-1
...
c#コードは
data = redis.Sort("hot_ids ", new SortOptions()
{
GetPattern = "# GET msg:*->msg GET msg:*->count GET msg:*->comments",
Skip = skip,
Take = take,
SortPattern = "not-key"
});