| 123456789101112131415161718 |
- package db
- import (
- "time"
- "github.com/goburrow/cache"
- )
- const (
- devAccountLoadNum = 10240
- )
- var (
- // 开发帐号缓存 key:accountName, value:DevAccountTable
- devAccountCache = cache.New(
- cache.WithExpireAfterAccess(48 * time.Hour),
- )
- )
|