()
| 210 | } |
| 211 | |
| 212 | func initAdsCache() { |
| 213 | o := orm.NewOrm() |
| 214 | var pos []AdsPosition |
| 215 | o.QueryTable(&AdsPosition{}).All(&pos) |
| 216 | for _, item := range pos { |
| 217 | key := fmt.Sprintf("%v-%v", item.Identify, item.IsMobile) |
| 218 | positionCache.Store(key, item.Id) |
| 219 | } |
| 220 | UpdateAdsCache() |
| 221 | } |
| 222 | |
| 223 | func UpdateAdsCache() { |
| 224 | var ( |
no test coverage detected