Also, see the cheat sheet here: https://www.nesono.com/sites/default/files/lldb%20cheat%20sheet.pdf
image lookup --address {address}
thread backtrace
thread list
p <variable>
parray <count> <array variable>
UE4 example:
parray 100 (float*)FloatValues.AllocatorInstance.Data
To set a watch point on memory address:
w s e -- <address>
To list all the watchpoint:
watchpoint list
To delete a watchpoint:
watchpoint delete <ID>