chain_width to 50

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-04-22 04:42:26 +00:00
parent 9b658d86b2
commit 76509830e6
190 changed files with 3469 additions and 930 deletions

View File

@@ -14,7 +14,10 @@ use crate::keyval::Key;
#[implement(super::Map)]
#[tracing::instrument(level = "trace")]
pub async fn clear(self: &Arc<Self>) {
self.for_clear().ignore_err().ready_for_each(|_| ()).await;
self.for_clear()
.ignore_err()
.ready_for_each(|_| ())
.await;
}
/// Delete all data stored in this map. !!! USE WITH CAUTION !!!