我想使用散列(嵌套散列)的散列。例如,redis中的嵌套散列
{Key 1 ->
{Subkey 1 -> {Value1, Value2...},
Subkey 2 -> {Value1, Value2...},
.
.
Subkey n -> {Value1, Value2...}
}
Key 2 -> {...}
.
.
Key n -> {...}
}
告訴我如何在redis中定義此結構以及如何訪問這些值。我正在嘗試在紅寶石上使用它。
據我所知,redis不支持Hash數據結構的嵌套散列。 – Rubysmith