commit | 84e73c88827e0065b78e84ba09150166dab84c2a | [log] [tgz] |
---|---|---|
author | Thierry FOURNIER <tfournier@arpalert.org> | Fri Sep 25 22:13:32 2015 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sat Sep 26 00:37:35 2015 +0200 |
tree | 5decb78531f303694940fa9ec9d582ee95c0191d | |
parent | d2a3dcc8bd6e37cd8cea781153fdf32fbc0d230a [diff] |
MEDIUM: lua: use the function lua_rawset in place of lua_settable The function lua_settable uses the metatable for acessing data, so in the C part, we want to index value in the real table and not throught the meta-methods. It's much faster this way.