You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used lua libary "bitop" in my lua script like this:
"bit.band(score, ARGV[3])>ARGV[4]"
but miniredis report err msg:
"ERR Error compiling script (new function): :8: attempt to index a non-table object(nil) with key 'band' stack traceback: :8: in main chunk [G]: ?"
miniredis did not recognize bitop library.
The text was updated successfully, but these errors were encountered:
I used lua libary "bitop" in my lua script like this:
Hi,
Thanks for your issue report.
Is the bitop library available for https://github.com/yuin/gopher-lua ? If so
we can add it.
These seem to be the default supported ones in gopher-lua:
- Base
- Channel
- Coroutine
- Debug
- Io
- Math
- Os
- Package
- String
- Table
I used lua libary "bitop" in my lua script like this:
"bit.band(score, ARGV[3])>ARGV[4]"
but miniredis report err msg:
"ERR Error compiling script (new function): :8: attempt to index a non-table object(nil) with key 'band' stack traceback: :8: in main chunk [G]: ?"
miniredis did not recognize bitop library.
The text was updated successfully, but these errors were encountered: