delete abstract method

void delete(
  1. RawData key, {
  2. bool ensured = false,
})

Set the database entry for key to value.

If ensured == true, the write will be flushed from the operating system buffer cache before the write is considered complete. If this flag is true, writes will be slower. If this flag is false, and the machine crashes, some recent writes may be lost.

Implementation

void delete(RawData key, {bool ensured = false});