compilation - Is lua called from redis interpretted or compiled? -
redis supports lua scripting. using eval command, can execute lua script in redis. lua script compiled or interpretted when redis calls lua script?
lua scripts sent lua library execution compiled lua vm instructions before execution. these instructions interpreted lua vm.
Comments
Post a Comment