lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Thu, Jul 28, 2011 at 11:36 AM, Javier Gallart <jgallartm@gmail.com> wrote:
> Lua 5.1.4  Copyright (C) 1994-2008 Lua.org, PUC-Rio
>> hiredis = require("hiredis")
> ./hiredis.lua:1: loop or previous error loading module 'hiredis'

Assuming that the hiredis module is not in the current directory, then
this looks very much like there being another file called hiredis.lua
in this directory, which in turn is requiring hiredis.  The resulting
confusion leads to that error.

steve d.