backfill

Function backfill 

Source
pub fn backfill(
    db: &mut Db,
    wal: &Wal,
) -> Result<(), Box<dyn Error + Send + Sync>>
Expand description

Moving content from WAL to a database (called “backfilling”). Arguments:

  • db: database to backfill
  • wal: WAL to apply Warning: risks of corruption if used on a live database.