-
Notifications
You must be signed in to change notification settings - Fork 53
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
Node: added FCALL and FCALL_RO commands #2011
Node: added FCALL and FCALL_RO commands #2011
Conversation
Signed-off-by: Yi-Pin Chen <[email protected]>
Signed-off-by: Yi-Pin Chen <[email protected]>
/** | ||
* Invokes a previously loaded read-only function. | ||
* | ||
* See https://valkey.io/commands/fcall/ for more details. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Valkey document currently doesn't list fcall_ro command.
} else { | ||
return createCommand(RequestType.FunctionFlush, []); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just group all function commands together.
@@ -13,6 +13,7 @@ import { Buffer, BufferWriter, Reader, Writer } from "protobufjs"; | |||
import { | |||
AggregationType, | |||
ExpireOptions, | |||
GeoUnit, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My VS Code automatically fix the order.
Signed-off-by: Yi-Pin Chen <[email protected]>
https://valkey.io/commands/fcall/