Introduction
EVALSHA lets you run a saved script in Redis quickly by using its unique ID instead of sending the whole script every time.
You want to run the same Lua script many times without sending it again.
You want faster script execution by avoiding repeated script parsing.
You want to reduce network traffic by sending only the script's ID.
You want to ensure the script is already loaded before running it.
You want to handle errors if the script is missing from Redis.