[PATCH] Wasted memory use storing path copies in node tree
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 12 Aug 2011 11:04:42 +0000 (11:04 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 12 Aug 2011 11:04:42 +0000 (11:04 +0000)
commitb3861e0ec70ad94f925f196564e6a20e509ab9c4
tree3d8b30d5b31eed922dee465ad41b8b7eff006abd
parent69ba2e55a130a86ebd8988ab404a91e42a27dac9
[PATCH] Wasted memory use storing path copies in node tree
When creating the node tree, every node stores a copy of its full path table. e.g. for node("admin.network.wireless"), node.path = { "admin", "network", "wireless" }

This value is not used anywhere, and likely may be from before the addition of the treecache lookup table? In any instance, I've searched high and low and see nothing ever referencing any node's path via the path member. It
eats a good chunk of memory though and as such I believe it should be removed.

I've tested every page in the admin-full module after removing it and all seem to function properly.
libs/web/luasrc/dispatcher.lua