Skip to content

Commit

Permalink
Remove BufferedStorage
Browse files Browse the repository at this point in the history
  • Loading branch information
slowli committed Oct 24, 2023
1 parent da75ec5 commit 249df2b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 540 deletions.
257 changes: 0 additions & 257 deletions node/libs/storage/src/buffered.rs

This file was deleted.

4 changes: 1 addition & 3 deletions node/libs/storage/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! This module is responsible for persistent data storage, it provides schema-aware type-safe database access. Currently we use RocksDB,
//! but this crate only exposes an abstraction of a database, so we can easily switch to a different storage engine in the future.

mod buffered;
mod rocksdb;
mod testonly;
#[cfg(test)]
Expand All @@ -10,8 +9,7 @@ mod traits;
mod types;

pub use crate::{
buffered::BufferedStorage,
rocksdb::RocksdbStorage,
traits::{BlockStore, ContiguousBlockStore, ReplicaStateStore, WriteBlockStore},
traits::{BlockStore, ReplicaStateStore, WriteBlockStore},
types::{ReplicaState, StorageError, StorageResult},
};
Loading

0 comments on commit 249df2b

Please sign in to comment.