(key string, seconds int64)
| 88 | } |
| 89 | |
| 90 | func (ek *ExpireStructure) PERSIST(key string, seconds int64) error { |
| 91 | return ek.setExpireToDB(key, -1) |
| 92 | } |
| 93 | |
| 94 | func (ek *ExpireStructure) EXPIREBY(key string, duration int64, tag ...string) error { |
| 95 | if len(tag) == 0 { |