Struct RedisStripped
Represents the stripped type of a struct.
struct RedisStripped(T, bool strip_id = true)
;
Strips all fields that cannot be directly stored as values in the Redis
database. By default, any field named id
or _id
is also stripped. Set
the strip_id
parameter to false
to keep those fields.
Constructors
Name | Description |
---|---|
this
(src)
|
Methods
Name | Description |
---|---|
membersString
()
|
|
populateNonRedisFields
(dst, values)
|
|
populateRedisFields
(dst, values)
|
|
unstrip
(stripped_members)
|
Reconstructs the full (unstripped) struct value. |
Aliases
Name | Description |
---|---|
strippedMemberIndices
|
|
StrippedMembers
|
|
unstrippedMemberIndices
|
|
UnstrippedMembers
|