-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
send_command is not a function #90
Comments
Looks like metroplex is using https://github.com/mranney/node_redis |
|
Ok, so you're saying that metroplex is dependent on that particular node module because of the function/method it uses. Any chance ioredis would implement a function/feature like that? |
Well, I checked the documentation of node_redis again and it turns out BTW, Where does metroplex use |
Looks like metroplex is using a Redis wrapper named leverage (https://www.npmjs.com/package/leverage) around redis client and that wrapper is using send_command. I used the following command to list all instances where send_command is used in both leverage and redis client. egrep -ir "send_command" node_modules/metroplex/ |
Added in 1.5.10 |
Thank you (I'm the author of leverage, metroplex). |
I am using metroplex node module that requires a redis connection. When I used ioredis, I got the following error whereas the default Redis client (that comes with metroplex) seems to work fine.
Any ideas what send_command is and why it is not supported?
FYI: I am using iojs
The text was updated successfully, but these errors were encountered: