Top "Lua-table" questions

This tag refers to the table type in Lua that implements associative arrays.

Get n-th element from end of list (table)

If I have a list (table): local list = {'foo', 'bar', 'baz', 'qux'} How do I get the n-th item from …

arrays list lua lua-table lua-5.2
Comparing two index tables by index-value in lua

I'm attempting to compare two tables of equal length with a function, since I don't know of any other way …

lua compare lua-table
Redis - Lua tables as return values - why is this not working

When I run this code through redis EVAL it return no results. Any idea why this is not working? redis-cli …

lua redis lua-table