Scripts
SCRIPT LOAD
Load the specified Lua script into the script cache.
Arguments
scriptbodystringrequired
The script to load.
Response
stringrequired
The sha1 of the script.
Example
const script = ` local value = redis.call('GET', KEYS[1]) return value`;const sha1 = await redis.scriptLoad(script);