I am using Ubuntu 16.10 in VirtualBox and I have installed Lua5.3.1:
wheris lua
lua: /usr/bin/lua5.3
Though, if I run a script with:
redis-cli --eval 'scriptname'
redis will use "Lua 5.1" (found with 'print(_VERSION)' in the script).
I need to be running with Lua5.3 because I need support for large integers. How can I change the version to run on redis? Thank you!