Concept Flow - APPEND for string concatenation
Start with key and initial string
Call APPEND command with key and new string
Redis checks if key exists
Return new length of string stored at key
End
APPEND adds a new string to the existing string stored at a key or creates the key if it doesn't exist, then returns the new string length.