-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0db6ee5
commit 6ebc561
Showing
14 changed files
with
359 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<h1 align="center"> | ||
tower-sessions-moka-store | ||
</h1> | ||
|
||
<p align="center"> | ||
Moka session store for `tower-sessions`. | ||
</p> | ||
|
||
## 🤸 Usage | ||
|
||
```rust | ||
use std::net::SocketAddr; | ||
|
||
use axum::{response::IntoResponse, routing::get, Router}; | ||
use serde::{Deserialize, Serialize}; | ||
use time::Duration; | ||
use tower_sessions::{CachingSessionStore, Expiry, Session, SessionManagerLayer}; | ||
use tower_sessions_moka_store::MokaStore; | ||
use tower_sessions_sqlx_store::{sqlx::SqlitePool, SqliteStore}; | ||
|
||
const COUNTER_KEY: &str = "counter"; | ||
|
||
#[derive(Serialize, Deserialize, Default)] | ||
struct Counter(usize); | ||
|
||
async fn handler(session: Session) -> impl IntoResponse { | ||
let counter: Counter = session.get(COUNTER_KEY).await.unwrap().unwrap_or_default(); | ||
session.insert(COUNTER_KEY, counter.0 + 1).await.unwrap(); | ||
format!("Current count: {}", counter.0) | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() -> Result<(), Box<dyn std::error::Error>> { | ||
let pool = SqlitePool::connect(":memory:").await?; | ||
|
||
let sqlite_store = SqliteStore::new(pool); | ||
sqlite_store.migrate().await?; | ||
|
||
let moka_store = MokaStore::new(Some(2000)); | ||
let caching_store = CachingSessionStore::new(moka_store, sqlite_store); | ||
|
||
let session_layer = SessionManagerLayer::new(caching_store) | ||
.with_secure(false) | ||
.with_expiry(Expiry::OnInactivity(Duration::seconds(10))); | ||
|
||
let app = Router::new().route("/", get(handler)).layer(session_layer); | ||
|
||
let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); | ||
let listener = tokio::net::TcpListener::bind(&addr).await?; | ||
axum::serve(listener, app.into_make_service()).await?; | ||
|
||
Ok(()) | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<h1 align="center"> | ||
tower-sessions-mongodb-store | ||
</h1> | ||
|
||
<p align="center"> | ||
MongoDB session store for `tower-sessions`. | ||
</p> | ||
|
||
## 🤸 Usage | ||
|
||
```rust | ||
use std::net::SocketAddr; | ||
|
||
use axum::{response::IntoResponse, routing::get, Router}; | ||
use serde::{Deserialize, Serialize}; | ||
use time::Duration; | ||
use tower_sessions::{Expiry, Session, SessionManagerLayer}; | ||
use tower_sessions_mongodb_store::{mongodb::Client, MongoDBStore}; | ||
|
||
const COUNTER_KEY: &str = "counter"; | ||
|
||
#[derive(Serialize, Deserialize, Default)] | ||
struct Counter(usize); | ||
|
||
async fn handler(session: Session) -> impl IntoResponse { | ||
let counter: Counter = session.get(COUNTER_KEY).await.unwrap().unwrap_or_default(); | ||
session.insert(COUNTER_KEY, counter.0 + 1).await.unwrap(); | ||
format!("Current count: {}", counter.0) | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() -> Result<(), Box<dyn std::error::Error>> { | ||
let database_url = std::option_env!("DATABASE_URL").expect("Missing DATABASE_URL."); | ||
let client = Client::with_uri_str(database_url).await?; | ||
let session_store = MongoDBStore::new(client, "tower-sessions".to_string()); | ||
let session_layer = SessionManagerLayer::new(session_store) | ||
.with_secure(false) | ||
.with_expiry(Expiry::OnInactivity(Duration::seconds(10))); | ||
|
||
let app = Router::new().route("/", get(handler)).layer(session_layer); | ||
|
||
let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); | ||
let listener = tokio::net::TcpListener::bind(&addr).await?; | ||
axum::serve(listener, app.into_make_service()).await?; | ||
|
||
Ok(()) | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<h1 align="center"> | ||
tower-sessions-redis-store | ||
</h1> | ||
|
||
<p align="center"> | ||
Redis via `fred` session store for `tower-sessions`. | ||
</p> | ||
|
||
## 🤸 Usage | ||
|
||
```rust | ||
use std::net::SocketAddr; | ||
|
||
use axum::{response::IntoResponse, routing::get, Router}; | ||
use serde::{Deserialize, Serialize}; | ||
use time::Duration; | ||
use tower_sessions::{Expiry, Session, SessionManagerLayer}; | ||
use tower_sessions_redis_store::{fred::prelude::*, RedisStore}; | ||
|
||
const COUNTER_KEY: &str = "counter"; | ||
|
||
#[derive(Debug, Serialize, Deserialize, Default)] | ||
struct Counter(usize); | ||
|
||
async fn handler(session: Session) -> impl IntoResponse { | ||
let counter: Counter = session.get(COUNTER_KEY).await.unwrap().unwrap_or_default(); | ||
session.insert(COUNTER_KEY, counter.0 + 1).await.unwrap(); | ||
format!("Current count: {}", counter.0) | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() -> Result<(), Box<dyn std::error::Error>> { | ||
let pool = RedisPool::new(RedisConfig::default(), None, None, None, 6)?; | ||
|
||
let redis_conn = pool.connect(); | ||
pool.wait_for_connect().await?; | ||
|
||
let session_store = RedisStore::new(pool); | ||
let session_layer = SessionManagerLayer::new(session_store) | ||
.with_secure(false) | ||
.with_expiry(Expiry::OnInactivity(Duration::seconds(10))); | ||
|
||
let app = Router::new().route("/", get(handler)).layer(session_layer); | ||
|
||
let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); | ||
let listener = tokio::net::TcpListener::bind(&addr).await?; | ||
axum::serve(listener, app.into_make_service()).await?; | ||
|
||
redis_conn.await??; | ||
|
||
Ok(()) | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.