-
Notifications
You must be signed in to change notification settings - Fork 68
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
base: main
Are you sure you want to change the base?
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]>
Issue link
This Pull Request is linked to issue (URL):
Checklist
Before submitting the PR make sure the following are checked: