2 Star 0 Fork 0

hero/momo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
client.go 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
hero 提交于 2024-11-04 11:45 . upd:目录结构调整
package model
import (
"errors"
"time"
"gitee.com/linqwen/momo/app/conf/dao"
"gitee.com/linqwen/momo/base"
"gitee.com/linqwen/momo/cache"
"gorm.io/gorm"
)
func init() {
dao.ConfDb.AutoMigrate(&ClientEntity{})
initClientCache()
}
type ClientEntity struct {
base.SnowflakeIDModel
Status int `gorm:"column:status;type:int" json:"Status"`
Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"`
Task int `gorm:"column:task;type:int" json:"Task"`
Cpu string `gorm:"column:cpu;size:255" json:"Cpu"`
Mem string `gorm:"column:mem;size:255" json:"Mem"`
Account string `gorm:"column:account;size:255" json:"Account"`
Name string `gorm:"column:name;size:255" json:"Name"`
Ip string `gorm:"column:ip;size:39;unique" json:"Ip"` // 对于MySQL和PostgreSQL使用varchar长度控制,SQLite仍不支持inet类型
}
func (ClientEntity) TableName() string { return "conf_client" }
func (s *ClientEntity) AfterSave(tx *gorm.DB) (err error) {
go initClientCache()
return nil
}
func (s *ClientEntity) AfterDelete(tx *gorm.DB) (err error) {
go initClientCache()
return nil
}
func initClientCache() {
time.Sleep(100 * time.Millisecond)
var objs []ClientEntity
var objmap = make(map[string]int)
if err := dao.ConfDb.Where("status = ?", 1).Find(&objs).Error; err != nil {
if errors.Is(err, gorm.ErrRecordNotFound) {
return
}
return
}
if len(objs) > 0 {
for _, a := range objs {
objmap[a.Ip] = a.Access
}
cache.SetCache("clientMap", objmap, time.Now().Add(365*24*time.Hour))
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/linqwen/momo.git
git@gitee.com:linqwen/momo.git
linqwen
momo
momo
v1.1.20

搜索帮助