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

Merge pull request #122 from pricees/master

Added Items() to return items from BeeCache
This commit is contained in:
astaxie 2013-08-04 23:15:37 -07:00
commit 6f2cd326bf

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()