(version int32, itemId int64)
| 26 | } |
| 27 | |
| 28 | func (this *Stat) UniqueKey(version int32, itemId int64) string { |
| 29 | return UniqueKey(this.ServerId, this.Keys, this.Time, version, itemId) |
| 30 | } |
| 31 | |
| 32 | func (this *Stat) FullKey(version int32, itemId int64) string { |
| 33 | return this.Time + "_" + string(int32ToBigEndian(version)) + this.UniqueKey(version, itemId) |
no test coverage detected