(key string, timestamp int64)
| 36 | } |
| 37 | |
| 38 | func (ek *ExpireStructure) EXPIREAT(key string, timestamp int64) error { |
| 39 | return ek.setExpireToDB(key, timestamp*1000) |
| 40 | } |
| 41 | |
| 42 | func (ek *ExpireStructure) PEXPIREAT(key string, milliseconds_timestamp int64) error { |
| 43 | return ek.setExpireToDB(key, milliseconds_timestamp) |