API ReferenceHashes
HKeys
Get all field names from a hash
Syntax
Redix.HKeys(key, callback)Parameters
Prop
Type
Returns
Prop
Type
Example
Redix.HKeys('player:123', function(err, fields)
if not err then
print('Available fields:')
for _, field in ipairs(fields) do
print('- ' .. field)
end
end
end)