ListKey returns the key list for k is stored under.
(k string)
| 710 | |
| 711 | // ListKey returns the key list for k is stored under. |
| 712 | func ListKey(k string) string { |
| 713 | return Key(k, "list") |
| 714 | } |
| 715 | |
| 716 | func milliseconds(d time.Duration) int64 { |
| 717 | ms := d.Milliseconds() |