Updated Dependency Management and add a new function to list all keys across all nodes in the Memcached cluster.#5
Open
thompsonlabs wants to merge 4 commits intoIntegralist:masterfrom
Open
Conversation
… now mostly unmaintained) to the newer Go Modules based dependency management which utilises go.mod and go.sum files respectfully. It is important to note that the team behind the Glide project themselves, recommend that developers migrate to Go Module for dependency management. See: https://github.com/Masterminds/glide
…o allow for the listing of ALL keys across ALL nodes in a cluster. The component has been fully integrated into the main elasticache class, its functionality acessible by the new ListAllKeys function.
…asticache Endpoint environment variable to be specified. The rationale behind this is to permit each instance of the Elasticache component to be associated with their own endpoint. Prior to this ALL instances of this Elasticache component would point to the SAME endpoint thereby prohibiting multiple caches to be referenced by a single application, this update now makes working with multiple memcache clusters possible.
…her than the list itself as a literal. Also initialised the arrays that is returned to an initial count of zero, it will be dynamically scaled according to the number of nodes that are returned from the listing operation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
1)Migrated the project away from Glide (which is no longer being actively maintained) to use the newer dependency management features provide by the Go Modules system.
2)Added new lister utility component and integrated it into the main ElastiCache class; its functionality is accessible via the new top-level ListAllKeys function.