-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing QINFO command #8
Comments
Thanks for trying out the module. Yes, QINFO is not implemented yet, I forgot to remove it from the README when I was doing the clean up. |
Thanks for the reply! Here's another look at the different .so files: $ ldd /tmp/libbullmq.so
linux-vdso.so.1 => (0x00007ffc4d90b000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f172082b000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f1720522000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f1720305000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f1720101000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f171fef9000)
/lib64/ld-linux-x86-64.so.2 (0x00007f1720bf5000)
libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1 (0x00007f171fcf6000)
$ ldd /usr/local/lib/libbullmq.so # my own compiled version
linux-vdso.so.1 => (0x00007ffc7cbe7000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f7b24d73000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f7b24b56000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f7b2478c000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f7b24588000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f7b24380000)
/lib64/ld-linux-x86-64.so.2 (0x00007f7b2507c000)
libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1 (0x00007f7b2417d000) In the pre-compiled version I'm missing The only other difference is that I used Zig 0.8 to compile. |
Same missing command issue with |
Great redis module! I had to compile from scratch since I got this error:
After a manual compile everything works fine. However, the
QINFO
command as references in the README is not working:I don't see any references in the code either - is it still pending implementation?
The text was updated successfully, but these errors were encountered: