Hi, For string concatenation, which one of the following is the most efficient? 1) strings:join(["Item:{", ItemID, "}")], ""] 2) lists:append(["Item:{", ItemID, "}")]) 3) "Item:{" ++ ItemID ++ "}" Here ItemID is a UUID. Thanks Khitai