uniugm/admin/lib/dtimer/timer.go
2025-05-12 18:43:41 +08:00

10 lines
283 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package dtimer
/*
分布式定时器,用于解决比如多个进程启动后,只有一个进程触发定时器事件执行,
目标不影响架构复杂性做个能用的出来。思路是用mysql做分布式锁多个进程抢占单例执行
*/
type DTimer struct {
}