Difficulty: Advanced
What is the difference between DEL and UNLINK?
`DEL` deletes the key and reclaims memory synchronously. `UNLINK` removes the key but reclaims memory in a background thread for better performance with large objects.
Performance, Memory Cleanup