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
public Sort BY(String pattern) { bySpec = Command.Options.BY.name() + WSPAD + pattern; return this; }
this function should also append a whitespace after the pattern like the GET function
The text was updated successfully, but these errors were encountered:
Thanks snc, will take a look. /R
Sorry, something went wrong.
Hello, alphazero!
public Sort LIMIT(long from, long count) { limitSpec = Command.Options.LIMIT.name() + WSPAD + from + " " + count; return this; }
And this function should also append a whitespace after the count. Otherwise DESC() not working with LIMIT()
Thank you for reporting. Fixed.
master: commit 9db6c1c 1.2.n: commit 9e6f3a1
No branches or pull requests
public Sort BY(String pattern) { bySpec = Command.Options.BY.name() + WSPAD + pattern; return this; }
this function should also append a whitespace after the pattern like the GET function
The text was updated successfully, but these errors were encountered: