# EVAL
Invoke the execution of a server-side Lua script.
The first argument is the script's source code.
Scripts are written in [Lua](https://lua.org) and executed by the embedded [Lua 5.1](https://redis.io/docs/latestdevelop/interact/programmability/lua-api) interpreter in Redis.
The second argument is the number of input key name arguments, followed by all the keys accessed by the script.
These names of input keys are available to the script as the [_KEYS_ global runtime variable](https://redis.io/docs/latestdevelop/interact/programmability/lua-api#the-keys-global-variable)
Any additional input arguments **should not** represent names of keys.
**Important:**
to ensure the correct execution of scripts, both in standalone and clustered deployments, all names of keys that a script accesses must be explicitly provided as input key arguments.
The script **should only** access keys whose names are given as input arguments.
Scripts **should never** access keys with programmatically-generated names or based on the contents of data structures stored in the database.
**Note:**
in some cases, users will abuse Lua EVAL by embedding values in the script instead of providing them as argument, and thus generating a different script on each call to EVAL.
These are added to the Lua interpreter and cached to redis-server, consuming a large amount of memory over time.
Starting from Redis 7.4, scripts loaded with `EVAL` or [`EVAL_RO`](https://redis.io/docs/latest/commands/eval_ro) will be deleted from redis after a certain number (least recently used order).
The number of evicted scripts can be viewed through [`INFO`](https://redis.io/docs/latest/commands/info)'s `evicted_scripts`.
Please refer to the [Redis Programmability](https://redis.io/docs/latest/develop/interact/programmability/) and [Introduction to Eval Scripts](https://redis.io/docs/latest/develop/interact/programmability/eval-intro) for more information about Lua scripts.
## Examples
The following example will run a script that returns the first argument that it gets.
```
> EVAL "return ARGV[1]" 0 hello
"hello"
```
## Return information
{{< multitabs id="eval-return-info"
tab1="RESP2"
tab2="RESP3" >}}
The return value depends on the script that was executed.
-tab-sep-
The return value depends on the script that was executed.