We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Fails to transform map argument for redis.msetnx({a:123,b:345}) Somehow related to #217
redis.msetnx({a:123,b:345})
Before this.initPromise()#:
this.initPromise()
After:
The text was updated successfully, but these errors were encountered:
There's no argument transformer for msetnx yet. The built-in ones can be found here: https://github.com/luin/ioredis/blob/master/lib/command.js#L302-L335, and you can define one yourself for msetnx.
msetnx
However, I think we should have a built-in transformer for msetnx 😆 .
Sorry, something went wrong.
I think it's pretty inconsistent to have msetnx API differ from mset. Since it should be just an mset with a blackjack.
mset
Yes, you're right. Didn't notice this command when I implemented transformers.
525547c
No branches or pull requests
Fails to transform map argument for
redis.msetnx({a:123,b:345})
Somehow related to #217
Before
this.initPromise()
#:After:
The text was updated successfully, but these errors were encountered: