You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Find is inconsistently used, and server APIs sometimes called directly for same purpose.
This makes it impossible to add a simple client side cache to cover cases:
Find-PSResource -Name Az* -Repository PSGallery -SkipPublishersCheck:$false
Need to have clean serach interface that covers all search scenarios:
IRepositorySearch
Find(repositoryName, string packageName) -> Find latest version single pkg (no wild card)
Find(repositoryName, string[] packageName) -> Find latest version of multiple pkg names (wildcard supported)
Find(repositoryName, string packageName, version) -> Find single pkg with version (no wild card)
Find(repositoryName, string[] packageName, version) -> Find multiple pkg names with version (wildcard supported)
Summary of the new feature / enhancement
This makes it impossible to add a simple client side cache to cover cases:
Find-PSResource -Name Az* -Repository PSGallery -SkipPublishersCheck:$false
Proposed technical implementation details (optional)
No response
The text was updated successfully, but these errors were encountered: