|
@@ -1,3 +1,4 @@
|
|
|
+//! Cache storage implementation.
|
|
|
use crate::{
|
|
|
amount::AmountCents,
|
|
|
asset::AssetId,
|
|
@@ -14,6 +15,11 @@ mod batch;
|
|
|
|
|
|
pub(crate) type CacheStorage<K, V> = Arc<RwLock<HashMap<K, V>>>;
|
|
|
|
|
|
+/// Cache storage implementation.
|
|
|
+///
|
|
|
+/// This cache will wrap any actual storage and will add an in memory caching to
|
|
|
+/// offer better performance. This layer will also manager cache eviction and
|
|
|
+/// invalidation.
|
|
|
pub struct Cache<'a, S>
|
|
|
where
|
|
|
S: Storage<'a> + Sync + Send,
|
|
@@ -29,7 +35,7 @@ impl<'a, S> Cache<'a, S>
|
|
|
where
|
|
|
S: Storage<'a> + Sync + Send,
|
|
|
{
|
|
|
- #[allow(unused)]
|
|
|
+ /// Create a new cache storage.
|
|
|
pub fn new(storage: S) -> Self {
|
|
|
Self {
|
|
|
payments: Arc::new(RwLock::new(HashMap::new())),
|
|
@@ -134,7 +140,8 @@ where
|
|
|
mod test {
|
|
|
use super::*;
|
|
|
use crate::{
|
|
|
- storage_test_suite, tests::deposit, AssetDefinition, AssetManager, Ledger, SQLite, Status,
|
|
|
+ storage::sqlite::SQLite, storage_test_suite, tests::deposit, AssetDefinition, AssetManager,
|
|
|
+ Ledger, Status,
|
|
|
};
|
|
|
use sqlx::sqlite::{SqliteConnectOptions, SqlitePoolOptions};
|
|
|
use std::fs::remove_file;
|