Alias RedisHashCollection
Models a set of numbered hashes.
alias RedisHashCollection(RedisCollectionOptions OPTIONS = RedisCollectionOptions .defaults, ulong ID_LENGTH = 1)
= RedisCollection!(RedisHash,OPTIONS,ID_LENGTH);
This structure is roughly equivalent to a string[string][long]
and is
commonly used to store collections of objects, such as all users of a
service. For a strongly typed variant of this class, see
RedisObjectCollection
.