View Single Post
11-11-11, 09:41 AM   #10
Vlad
A Molten Giant
 
Vlad's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2005
Posts: 793
local addonName, _L = ...

Could then use _L table for local addon storage, accessible across files, but shouldn't be used for standard data access like OnUpdate loop constantly accessing the table _L.data={} at certain index would take more resources than having a local data = ... where the data is directly stored in the variable local to that file. Table within table is slower than just one table.

Anyway, probably not useful info.
  Reply With Quote