-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Add support for HSCAN [NOVALUES] #2705
Labels
Comments
chayim
changed the title
Support XREAD reading from last message of stream
Add support for HSCAN [NOVALUES]
Feb 20, 2024
gerzse
added a commit
to gerzse/node-redis
that referenced
this issue
Feb 27, 2024
Issue redis#2705 The NOVALUES option instructs HSCAN to only return keys, without their values.
gerzse
added a commit
to gerzse/node-redis
that referenced
this issue
Mar 4, 2024
Issue redis#2705 The NOVALUES option instructs HSCAN to only return keys, without their values. This is materialized as a new command, `hScanNoValues`, given that the return type is different from the usual return type of `hScan`. Also a new iterator is provided, `hScanNoValuesIterator`, for the same reason.
gerzse
added a commit
to gerzse/node-redis
that referenced
this issue
Mar 4, 2024
Issue redis#2705 The NOVALUES option instructs HSCAN to only return keys, without their values. This is materialized as a new command, `hScanNoValues`, given that the return type is different from the usual return type of `hScan`. Also a new iterator is provided, `hScanNoValuesIterator`, for the same reason.
sjpotter
added a commit
that referenced
this issue
Jul 14, 2024
* Support the NOVALUES option of HSCAN Issue #2705 The NOVALUES option instructs HSCAN to only return keys, without their values. This is materialized as a new command, `hScanNoValues`, given that the return type is different from the usual return type of `hScan`. Also a new iterator is provided, `hScanNoValuesIterator`, for the same reason. * skip hscan novalues test if redis < 7.4 * Also don't test hscan no values iterator < 7.4 --------- Co-authored-by: Shaya Potter <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As documented in this pull request
The text was updated successfully, but these errors were encountered: