condense code
This commit is contained in:
parent
c8d57032bc
commit
bdeae91063
@ -32,13 +32,12 @@ func (m *memoryStore) Dump() ([]*store.Record, error) {
|
||||
d := v.r.Expiry
|
||||
t := time.Since(v.c)
|
||||
|
||||
if d > time.Duration(0) {
|
||||
// expired
|
||||
if d > time.Duration(0) && t > d {
|
||||
if t > d {
|
||||
continue
|
||||
}
|
||||
|
||||
// update expiry
|
||||
if d > time.Duration(0) {
|
||||
v.r.Expiry -= t
|
||||
v.c = time.Now()
|
||||
}
|
||||
@ -63,12 +62,11 @@ func (m *memoryStore) Read(key string) (*store.Record, error) {
|
||||
t := time.Since(v.c)
|
||||
|
||||
// expired
|
||||
if d > time.Duration(0) && t > d {
|
||||
if d > time.Duration(0) {
|
||||
if t > d {
|
||||
return nil, store.ErrNotFound
|
||||
}
|
||||
|
||||
// update expiry
|
||||
if d > time.Duration(0) {
|
||||
v.r.Expiry -= t
|
||||
v.c = time.Now()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user