ItemCount() is equivalent to len(c.Items()), not len(c.Items)

master
Patrick Mylund Nielsen 11 years ago
parent fd89281dfd
commit e91e36d111

@ -944,7 +944,7 @@ func (c *cache) Items() map[string]*Item {
} }
// Returns the number of items in the cache. This may include items that have // Returns the number of items in the cache. This may include items that have
// expired, but have not yet been cleaned up. Equivalent to len(c.Items). // expired, but have not yet been cleaned up. Equivalent to len(c.Items()).
func (c *cache) ItemCount() int { func (c *cache) ItemCount() int {
c.RLock() c.RLock()
n := len(c.items) n := len(c.items)

Loading…
Cancel
Save