mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
9 lines
454 B
Go
9 lines
454 B
Go
/*
|
||
Package cache implements lightweight Kubernetes cluster caching that stores only resource references and ownership
|
||
references. In addition to references cache might be configured to store custom metadata and whole body of selected
|
||
resources.
|
||
|
||
The library uses Kubernetes watch API to maintain cache up to date. This approach reduces number of Kubernetes
|
||
API requests and provides instant access to the required Kubernetes resources.
|
||
*/
|
||
package cache
|