Lua配置表内存优化

Posted 那个妹子留步

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lua配置表内存优化相关的知识,希望对你有一定的参考价值。

local d=  index = id = 1,name=1,age=2,hig=3,
[1] = 1,1,1,1,
[2] = 1,1,1,1,
[3] = 1,1,1,1,
[4] = 1,1,1,1,

local base = 
        __index = function(table,key)
            local keyIndex = KeyMap[key]
            if not keyIndex then
                print("key not found: ",key)
                return nil
            end
            return table[keyIndex]
        end, --基类,默认值存取
        __newindex = function()
            --禁止写入新的键值
            error("Attempt to modify read-only table")
        end
    
setmetable(d,base)
base.__metatable = false --不让外面获取到元表,防止被无意修改
get(id)

id = d[id][d[index].id]
name = d[id][d[index].name]
age = d[id][d[index].age]

 

以上是关于Lua配置表内存优化的主要内容,如果未能解决你的问题,请参考以下文章

LuaProfiler:Lua内存优化工具教程

Lua的内存优化

Lua与Unity的内存优化技术

lua5.3gc卡顿

魔改TProto优化掉100MB的Lua内存

Lua表内存泄漏?