-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Edit and cleanup up Javadoc #2586
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
Comments
Re-opening for additional cleanup and editing. |
This Javadoc reference is a prime example of incomplete, broken documentation. The Javadoc for the rightPushAll
Append values to key.
Parameters:
key - must not be null.
values -
Returns:
null when used in pipeline / transaction.
Since:
1.5
See Also:
[Redis Documentation: RPUSH](https://redis.io/commands/rpush)
Does it represent the number of values successfully appended to the list referenced by the key? Is it some 1 or 0 value based on success or failure? No, it is not until I navigate to the Redis RPUSH command documentation do I learn that the value represents the size of the list after the push. However, what happens when I don't have a Internet connection readily available? What if I am working in offline mode? |
This fixes Javadoc errors and warnings in the Spring Data Redis codebase.
The text was updated successfully, but these errors were encountered: