Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for deleteCache (0.09 sec)

  1. cmd/metacache-bucket.go

    	b.caches = make(map[string]metacache, 10)
    	b.cachesRoot = make(map[string][]string, 10)
    }
    
    // deleteCache will delete a specific cache and all files related to it across the cluster.
    func (b *bucketMetacache) deleteCache(id string) {
    	b.mu.Lock()
    	c, ok := b.caches[id]
    	if ok {
    		// Delete from root map.
    		list := b.cachesRoot[c.root]
    		for i, lid := range list {
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top