[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Problem with lua redis clients
- From: steve donovan <steve.j.donovan@...>
- Date: Sun, 31 Jul 2011 07:59:39 +0200
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.