Skip to content

Commit

Permalink
fix lmdb
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Dec 10, 2024
1 parent e0eb165 commit d7e803e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions turbopack/crates/turbo-tasks-backend/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ use crate::database::{

#[cfg(feature = "lmdb")]
pub type LmdbBackingStorage = KeyValueDatabaseBackingStorage<
ReadTransactionCache<
StartupCacheLayer<FreshDbOptimization<crate::database::lmdb::LmbdKeyValueDatabase>>,
database::read_transaction_cache::ReadTransactionCache<
database::startup_cache::StartupCacheLayer<
database::fresh_db_optimization::FreshDbOptimization<
crate::database::lmdb::LmbdKeyValueDatabase,
>,
>,
>,
>;

Expand Down

0 comments on commit d7e803e

Please sign in to comment.