API ReferenceLists
LSet
Set the value of an element in a list by its index
Syntax
Redix.LSet(key, index, value)Parameters
Prop
Type
Returns
Prop
Type
Example
-- Update specific element
Redix.LSet('tasks', 2, {
task = 'updated_task',
priority = 'high'
})