nrk / redis-lua

A Lua client library for the redis key value storage system.
MIT License
731 stars 239 forks source link

Correction of Issue #43 #47

Open cedroyer opened 8 years ago

cedroyer commented 8 years ago

For Lua 5.2 and 5.3 compatibility, change all dangerous:

table.insert(table,pos,value)

to

table[pos] = value
NotAFile commented 5 years ago

I would greatly appreciate a merge of this, is anyone still around and active that could merge this?

soroshsabz commented 2 years ago

ITNOA

@nrk Did you have any plan to merge this?