Code Monkey home page Code Monkey logo

Comments (10)

ignacio avatar ignacio commented on July 16, 2024

But the call to 'client.network.write' adds data to requests

If I'm not mistaken:

local reply = cmd(client, ...)  <--- this will end up inserting data in 'requests' table
-- so here #requests can't be zero
table_insert(parsers, #requests, reply.parser)
return reply

from redis-lua.

suseyang avatar suseyang commented on July 16, 2024

sounds reasonable, but in particular situation, request is empty, that's a sure thing. and lua don't allow #2 argument to be 0, so an empty table can't use table.insert with #2 argument, which is a strange design i think.
if Line 516 isn't wrong, then the responsibility falls to the code before it by not catching the error in advance.

from redis-lua.

ignacio avatar ignacio commented on July 16, 2024

Do you have a test case to reproduce the error?

from redis-lua.

nrk avatar nrk commented on July 16, 2024

Not sure I understand what the issue is, any tiny snippet of code to reproduce it?

from redis-lua.

benwilber avatar benwilber commented on July 16, 2024

I'm seeing this issue as well.

redis-lua
   2.0.4-1 (installed) - /usr/local/lib/luarocks/rocks
local redis = require("redis")
local r = redis.connect()

r:pipeline(function(pipe)
    pipe:zadd("FOO", 1, "BAR")
    pipe:zadd("FOO", 2, "BAZ")
end)
lua: /usr/local/share/lua/5.2/redis.lua:802: /usr/local/share/lua/5.2/redis.lua:471: bad argument #2 to 'table_insert' (position out of bounds)
stack traceback:
    [C]: in function 'error'
    /usr/local/share/lua/5.2/redis.lua:802: in function 'error'
    /usr/local/share/lua/5.2/redis.lua:480: in function 'pipeline'
    test.lua:5: in main chunk
    [C]: in ?

from redis-lua.

janeczku avatar janeczku commented on July 16, 2024

@benwilber Did you find a fix for this?

from redis-lua.

cedroyer avatar cedroyer commented on July 16, 2024

I got the same problem, but it seems that it comes from lua version:
in 5.1:

t = {}
table.insert(t, 1, nil)
print(#t) --> 0, but
table.insert(t, 2, nil) --> no error

in 5.2 and 5.3:

t = {}
table.insert(t, 1, nil)
print(#t) --> 0
table.insert(t, 2, nil) --> ERROR: bad argument #2 to 'insert' (position out of bounds)

corrected for me by changing
in pipeline function:

table_insert(parsers, #requests, reply.parser)

by

parsers[#requests] = reply.parser

I'm working on a more complete patch and I submit a pull request

from redis-lua.

janeczku avatar janeczku commented on July 16, 2024

πŸ‘ well done @cedroyer! This seems to affect Lua >= 5.2 indeed.

from redis-lua.

jaysoffian avatar jaysoffian commented on July 16, 2024

I think the correct fix is to change:

table_insert(parsers, #requests, reply.parser)

to:

table_insert(parsers, reply.parser)

This keeps the requests and parsers tables parallel, i.e. for requests[n] the correct parser is parsers[n].

from redis-lua.

cedroyer avatar cedroyer commented on July 16, 2024

I disagree, if you use:
table_insert(parsers, reply.parser)
and reply.parser is nil (and that seems to be the case), your table won't change and the next parser you add in parsers will be insert at the wrong place (n-1), that's why table_insert(parsers, #requests, reply.parser) was used in the library.

use parsers[#requests] = reply.parser works for me with lua 5.3 and I think it also works for lua 5.1 and 5.2.

from redis-lua.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.