(version int32, itemId int64)
| 30 | } |
| 31 | |
| 32 | func (this *Stat) FullKey(version int32, itemId int64) string { |
| 33 | return this.Time + "_" + string(int32ToBigEndian(version)) + this.UniqueKey(version, itemId) |
| 34 | } |
| 35 | |
| 36 | func (this *Stat) EncodeValueKey(version int32) string { |
| 37 | if this.Value < 0 { |
no test coverage detected