mirror of https://github.com/ledisdb/ledisdb.git
47 lines
797 B
Go
47 lines
797 B
Go
package ledis
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func (db *DB) FlushAll() (drop int64, err error) {
|
|
all := [...](func() (int64, error)){
|
|
db.Flush,
|
|
db.LFlush,
|
|
db.HFlush,
|
|
db.ZFlush}
|
|
|
|
for _, flush := range all {
|
|
if n, e := flush(); e != nil {
|
|
err = e
|
|
return
|
|
} else {
|
|
drop += n
|
|
}
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func (db *DB) activeExpireCycle() {
|
|
eliminator := newEliminator(db)
|
|
eliminator.regRetireContext(kvExpType, db.kvTx, db.delete)
|
|
eliminator.regRetireContext(lExpType, db.listTx, db.lDelete)
|
|
eliminator.regRetireContext(hExpType, db.hashTx, db.hDelete)
|
|
eliminator.regRetireContext(zExpType, db.zsetTx, db.zDelete)
|
|
|
|
go func() {
|
|
tick := time.NewTicker(1 * time.Second)
|
|
for {
|
|
select {
|
|
case <-tick.C:
|
|
eliminator.active()
|
|
case <-db.l.quit:
|
|
break
|
|
}
|
|
}
|
|
|
|
tick.Stop()
|
|
}()
|
|
}
|