File tree 11 files changed +37
-51
lines changed
11 files changed +37
-51
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "rust-analyzer.linkedProjects" : [" ./valar/Cargo.toml" , " ./valar/Cargo.toml" ]
3
+ }
Original file line number Diff line number Diff line change
1
+ use std:: sync:: Arc ;
1
2
use std:: time:: Duration ;
2
3
3
4
use valar:: database:: Database ;
4
5
use valar:: services:: cache:: MemoryCache ;
5
- use valar:: services:: Cache ;
6
+ use valar:: services:: Cacheable ;
6
7
use valar:: Application ;
7
8
8
9
pub struct App {
9
10
pub database : Database ,
10
- pub cache : Box < dyn Cache + Send + Sync > ,
11
+ pub cache : Arc < Cacheable > ,
11
12
}
12
13
13
14
impl Application for App { }
14
15
15
16
impl App {
16
- fn cache ( ) -> impl Cache + Send + Sync {
17
- MemoryCache :: with_purge_interval ( Duration :: from_secs ( 1 ) )
17
+ fn cache ( ) -> Arc < Cacheable > {
18
+ Arc :: new ( MemoryCache :: new ( Duration :: from_secs ( 1 ) ) )
18
19
}
19
20
20
21
pub async fn create ( ) -> Self {
@@ -24,7 +25,7 @@ impl App {
24
25
25
26
Self {
26
27
database,
27
- cache : Box :: new ( Self :: cache ( ) ) ,
28
+ cache : Self :: cache ( ) ,
28
29
}
29
30
}
30
31
Original file line number Diff line number Diff line change 1
1
pub mod app;
2
2
pub mod http;
3
3
pub mod routes;
4
-
5
4
use std:: sync:: Arc ;
6
5
7
6
use valar:: http:: Server ;
Original file line number Diff line number Diff line change @@ -12,11 +12,15 @@ use crate::app::App;
12
12
use crate :: http:: controllers:: counter;
13
13
14
14
impl App {
15
- pub fn router ( ) -> Result < Arc < Router < Self , Compiled > > , Error > {
16
- let web = Route :: group ( [
15
+ pub fn web ( ) -> Route < App > {
16
+ Route :: group ( [
17
17
Route :: get ( "/" , counter:: show) ,
18
18
Route :: post ( "/" , counter:: increment) ,
19
- ] ) ;
19
+ ] )
20
+ }
21
+
22
+ pub fn router ( ) -> Result < Arc < Router < Self , Compiled > > , Error > {
23
+ let web = Self :: web ( ) ;
20
24
21
25
let router = Router :: from_iter ( [ web. middleware ( Session ) ] ) . middleware ( Logger ) ;
22
26
let router = Arc :: new ( router. compile ( ) ?) ;
Original file line number Diff line number Diff line change
1
+ pub mod cache;
2
+
3
+ pub trait Facade < T > {
4
+ fn facade ( ) -> T ;
5
+ }
Original file line number Diff line number Diff line change
1
+ use std:: sync:: Arc ;
2
+
3
+ use crate :: services:: Cacheable ;
4
+
5
+ pub struct Cache ( Arc < Cacheable > ) ;
6
+
7
+ impl Cache {
8
+ pub fn new ( cache : Arc < Cacheable > ) -> Self {
9
+ Self ( cache)
10
+ }
11
+ }
Original file line number Diff line number Diff line change 1
1
pub mod app;
2
2
pub mod database;
3
+ pub mod facades;
3
4
pub mod http;
4
5
pub mod routing;
5
6
pub mod services;
Original file line number Diff line number Diff line change 1
1
pub mod cache;
2
- pub mod session;
3
2
4
3
pub use cache:: Cache ;
5
- pub use session :: Session ;
4
+ pub use cache :: Cacheable ;
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ pub enum Error {
16
16
Expired ( String ) ,
17
17
}
18
18
19
+ pub type Cacheable = dyn Cache + Send + Sync ;
20
+
19
21
#[ async_trait]
20
22
pub trait Cache {
21
23
async fn get ( & self , key : & str ) -> Result < String , Error > ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ pub struct MemoryCache {
19
19
}
20
20
21
21
impl MemoryCache {
22
- pub fn with_purge_interval ( purge_interval : Duration ) -> Self {
22
+ pub fn new ( purge_interval : Duration ) -> Self {
23
23
let memory = Self {
24
24
state : Arc :: default ( ) ,
25
25
expirations : Arc :: default ( ) ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments