1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-24 11:24:14 +00:00

Added Items() to return items from BeeCache

This commit is contained in:
Edward Price 2013-08-05 00:47:37 -05:00
parent 4ffe988c30
commit 339346e307

View File

@ -73,6 +73,11 @@ func (bc *BeeCache) Delete(name string) (ok bool, err error) {
return
}
// Return all of the item in a BeeCache
func (bc *BeeCache) Items() map[string]*BeeItem {
return bc.items
}
func (bc *BeeCache) IsExist(name string) bool {
bc.lock.RLock()
defer bc.lock.RUnlock()