-
Notifications
You must be signed in to change notification settings - Fork 69
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
Moved documentation comments to base_client file and made changes to GlideClient for pkgsite to work #2981
Conversation
Signed-off-by: Edward Liang <[email protected]>
* GO: add xpending command Signed-off-by: jbrinkman <[email protected]> Signed-off-by: Edward Liang <[email protected]>
* GO Implement Dump and ObjectEncoding command Signed-off-by: EdricCua <[email protected]> Signed-off-by: Edward Liang <[email protected]>
* Implement Echo Command Signed-off-by: EdricCua <[email protected]> Signed-off-by: Edward Liang <[email protected]>
* Go: `XREADGROUP`. Signed-off-by: Yury-Fridlyand <[email protected]> Signed-off-by: Edward Liang <[email protected]>
* Shadow protobuf Signed-off-by: Yury-Fridlyand <[email protected]> Signed-off-by: Edward Liang <[email protected]>
…key-io#2967) Signed-off-by: TJ Zhang <[email protected]> Co-authored-by: TJ Zhang <[email protected]> Signed-off-by: Edward Liang <[email protected]>
* Go: `XAUTOCLAIM`. Signed-off-by: Yury-Fridlyand <[email protected]> Signed-off-by: Edward Liang <[email protected]>
…-io#2956) * Go: update return types & response handlers for scan commands Signed-off-by: TJ Zhang <[email protected]> Signed-off-by: Edward Liang <[email protected]>
…-io#2958) * Implement Object Freq, Idle and RefCount Signed-off-by: EdricCua <[email protected]> Signed-off-by: Edward Liang <[email protected]>
…2888) * Sort,Sort_RO,Sort Store commands Signed-off-by: Niharika Bhavaraju <[email protected]> Signed-off-by: Edward Liang <[email protected]>
* Go: `XGROUP CREATE`. Signed-off-by: Yury-Fridlyand <[email protected]> Signed-off-by: Edward Liang <[email protected]>
…y-io#2975) * go xGroupCreateConsumer and XGroupDelConsumer Signed-off-by: jbrinkman <[email protected]> Co-authored-by: Yury-Fridlyand <[email protected]> Signed-off-by: Edward Liang <[email protected]>
* Fix return types. Signed-off-by: Yury-Fridlyand <[email protected]> Signed-off-by: Edward Liang <[email protected]>
Fix return types Signed-off-by: Yury-Fridlyand <[email protected]> Signed-off-by: Edward Liang <[email protected]>
Signed-off-by: Edward Liang <[email protected]>
Signed-off-by: Edward Liang <[email protected]>
Signed-off-by: Edward Liang <[email protected]>
Signed-off-by: Edward Liang <[email protected]>
Signed-off-by: Edward Liang <[email protected]>
Signed-off-by: Edward Liang <[email protected]>
go/api/glide_client.go
Outdated
// GlideClient is a client used for connection in Standalone mode. | ||
type GlideClient interface { | ||
// IGlideClient is a client used for connection in Standalone mode. | ||
type IGlideClient interface { |
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.
Rename symbol IGlideClient
to GlideClientCommands
to better align the interface name to what it actually represents - an aggregation of all of the command interfaces.
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.
fixed
go/api/glide_cluster_client.go
Outdated
@@ -7,30 +7,57 @@ package api | |||
import "C" | |||
|
|||
// GlideClusterClient interface compliance check. | |||
var _ GlideClusterClient = (*glideClusterClient)(nil) | |||
var _ IGlideClusterClient = (*GlideClusterClient)(nil) |
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.
Rename symbol IGlideClusterClient
to GlideClusterClientCommands
to better align the interface name to what it actually represents - an aggregation of all of the command interfaces.
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.
fixed
// If key exists, returns the value of key as a Result[string]. Otherwise, return [api.CreateNilStringResult()]. | ||
// | ||
// For example: | ||
// 1. key: value |
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.
Indentation should be consistent for the entire file for documentation.
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.
On GitHub you can set for the appearance of tabs to be 4 spaces instead (for some reason the default is 8 ) and that "fixes" the appearance issue. All good
Signed-off-by: Edward Liang <[email protected]>
Signed-off-by: Edward Liang <[email protected]>
…GlideClient for pkgsite to work (valkey-io#2981) * moved docs from interfaces to base client Signed-off-by: Edward Liang <[email protected]>
…GlideClient for pkgsite to work (valkey-io#2981) * moved docs from interfaces to base client Signed-off-by: Edward Liang <[email protected]>
…GlideClient for pkgsite to work (valkey-io#2981) * moved docs from interfaces to base client Signed-off-by: Edward Liang <[email protected]> Signed-off-by: EdricCua <[email protected]>
* Implement DBSize Server Management Cluster Signed-off-by: EdricCua <[email protected]> * Fix docs Signed-off-by: EdricCua <[email protected]> * Fix docs Signed-off-by: EdricCua <[email protected]> * ORT- Add resolutions for hybrid-node-tests and bump versions (#2987) * add resolutions for hybrid-node-tests and bump ORT versions Signed-off-by: BoazBD <[email protected]> * format Signed-off-by: BoazBD <[email protected]> --------- Signed-off-by: BoazBD <[email protected]> Signed-off-by: EdricCua <[email protected]> * Go: Implement Server Management Command DBSize (#2991) * Implement DBSize Command Signed-off-by: EdricCua <[email protected]> * GO: Implement Copy Command (#2980) * Implement Copy Command Signed-off-by: EdricCua <[email protected]> * Moved documentation comments to base_client file and made changes to GlideClient for pkgsite to work (#2981) * moved docs from interfaces to base client Signed-off-by: Edward Liang <[email protected]> Signed-off-by: EdricCua <[email protected]> * quickfix of changing glideClient to become GlideClient (#3000) Signed-off-by: Edward Liang <[email protected]> Signed-off-by: EdricCua <[email protected]> * Go: Add command XRange and XRevRange (#2989) * Go: Add command XRange and XRevRange Signed-off-by: TJ Zhang <[email protected]> Signed-off-by: EdricCua <[email protected]> * Go: Added config folder for request_routing_config_test.go and errors folder for errors.go (#2996) * Implemented Time Command Signed-off-by: Niharika Bhavaraju <[email protected]> * Fixed code review changes Signed-off-by: Niharika Bhavaraju <[email protected]> * Added Time command (cluster) Signed-off-by: Niharika Bhavaraju <[email protected]> * Fixed code review comments Signed-off-by: Niharika Bhavaraju <[email protected]> * Added route,errors folders Signed-off-by: Niharika Bhavaraju <[email protected]> * Fixed failing tests Signed-off-by: Niharika Bhavaraju <[email protected]> --------- Signed-off-by: Niharika Bhavaraju <[email protected]> Signed-off-by: EdricCua <[email protected]> * Implement DBSize Cluster Signed-off-by: EdricCua <[email protected]> * Implement DBSize Cluster Signed-off-by: EdricCua <[email protected]> * Implement DBSize Cluster Signed-off-by: EdricCua <[email protected]> * Implement DBSize Cluster Signed-off-by: EdricCua <[email protected]> * Implement DBSize Cluster Signed-off-by: EdricCua <[email protected]> * Implement DBSize Cluster Signed-off-by: EdricCua <[email protected]> * Implement DBSize Cluster Signed-off-by: EdricCua <[email protected]> * Fix merge conflict Signed-off-by: EdricCua <[email protected]> * Fix review comment Signed-off-by: EdricCua <[email protected]> * Fix docs for RouteOption Signed-off-by: EdricCua <[email protected]> --------- Signed-off-by: EdricCua <[email protected]> Signed-off-by: BoazBD <[email protected]> Signed-off-by: Edward Liang <[email protected]> Signed-off-by: TJ Zhang <[email protected]> Signed-off-by: Niharika Bhavaraju <[email protected]> Co-authored-by: BoazBD <[email protected]> Co-authored-by: Edward Liang <[email protected]> Co-authored-by: tjzhang-BQ <[email protected]> Co-authored-by: Niharika Bhavaraju <[email protected]>
Issue link
This Pull Request is linked to issue (URL):
Checklist
Before submitting the PR make sure the following are checked: