Updated doc.
This commit is contained in:
parent
13283e5ee9
commit
b77e4bdbe5
17
README.md
17
README.md
@ -86,23 +86,20 @@ assert(Immutable{a=1,b=2,c=3} == Immutable{a=1,b=2,c=3})
|
||||
```
|
||||
|
||||
## Performance
|
||||
This library is pretty dang fast, but it's still slower than native Lua tables. Based on my local testing, immutable tables add a couple nanoseconds to things in the worst case scenario. In LuaJIT, there is a bigger performance discrepancy because immutable tables are about the same, but regular tables are much faster in LuaJIT. Your mileage may vary, but I'd say that immutable tables will probably never be a performance bottleneck for your program, especially if you were previously already using a constructor function and metatables. In some cases, immutable tables may also help reduce your program's memory footprint (if your program has many duplicate objects in memory) and may even improve speed (e.g. if your program uses a lot of deep equality checks). Don't trust this paragraph though! If in doubt, profile your code!
|
||||
This library is pretty dang fast, but it's still slower than native Lua tables. Based on my local testing, immutable tables add a couple nanoseconds to table operations in the worst case scenario. In LuaJIT, there is a bigger performance discrepancy because regular tables are more heavily optimized in LuaJIT. Your mileage may vary, but I'd say that immutable tables will probably never be a performance bottleneck for your program, especially if you use them in place of code that already used a constructor function and metatables. In some cases, immutable tables may also help reduce your program's memory footprint (if your program has many duplicate objects in memory) and may even improve speed (e.g. if your program uses a lot of deep equality checks). Don't trust this paragraph though! If in doubt, profile your code!
|
||||
|
||||
## Implementation details
|
||||
Under the hood, immutable tables are implemented in C as a userdata (that stores a hash value) with a metatable. That metatable has a weak-keyed mapping from hash -> userdata -> associated data. Immutable tables *are* garbage collected, so if you no longer have any references to the userdata, the userdata will get garbage collected, which will result in the entry being removed from the metatable's mapping. When new instances are created, a hash value is computed, and all the data in the associated hash bucket is scanned to look for duplicates. If a match is found, that existing instance is returned, otherwise a new one is created and added to the hash bucket. The following lua pseudocode approximates the C implementation's behavior:
|
||||
Under the hood, immutable tables are implemented in C as a userdata (that stores a hash value and length) with a metatable. That metatable has a weak-keyed mapping from hash -> userdata -> associated data. Immutable tables *are* garbage collected, so if you no longer have any references to the userdata, the userdata will get garbage collected, which will result in the entry being removed from the metatable's mapping. When new instances are created, a hash value is computed, and all the data in the associated hash bucket is scanned to look for duplicates. If a match is found, the existing instance is returned, otherwise a new one is created and added to the hash bucket. The following lua pseudocode approximates the C implementation's behavior:
|
||||
```lua
|
||||
function immutable(fields, class_fields)
|
||||
local cls = {
|
||||
__index = function(self, key)
|
||||
local cls = getmetatable(self)
|
||||
if cls.indices[key] then
|
||||
local data = cls.__instances[extract_hash(self)][self]
|
||||
return data[cls.indices[key]]
|
||||
else
|
||||
return cls[key]
|
||||
end
|
||||
key = cls.__indices[key] or key
|
||||
local data = cls.__instances[extract_hash(self)][self]
|
||||
return data[key] or cls[key]
|
||||
end,
|
||||
-- also: __len, __pairs, __ipairs, __tostring, from_table, is_instance
|
||||
...also: __len, __pairs, __ipairs, __tostring, from_table, is_instance...
|
||||
}
|
||||
for k,v in pairs(class_fields) do cls[k] = v end
|
||||
cls.__fields, cls.__indices = fields, {}
|
||||
@ -115,7 +112,7 @@ function immutable(fields, class_fields)
|
||||
cls.__buckets = setmetatable({}, {__mode='k'})
|
||||
return setmetatable(cls, {
|
||||
__call=function(cls, ...)
|
||||
local hash = make_hash(...)
|
||||
local hash = calculate_hash(...)
|
||||
local bucket = cls.__instances[hash]
|
||||
for userdata, data in pairs(bucket) do
|
||||
local match = true
|
||||
|
Loading…
Reference in New Issue
Block a user