wisp_kv_sessions_ets_store

Package Version Hex Docs

gleam add wisp_kv_sessions_ets_store@1
import wisp_kv_sessions/ets_store

pub fn main() {
  // Setup session_store
  use ets_store <- result.map(ets_store.try_create_session_store("sessions_table"))

  // Create session config
  let session_config =
    session_config.Config(
      default_expiry: session.ExpireIn(60 * 60),
      cookie_name: "SESSION_COOKIE",
      store: ets_store,
    )

  //...
}

Further documentation can be found at https://hexdocs.pm/wisp_kv_sessions_ets_store. And https://hexdocs.pm/wisp_kv_sessions

Development

gleam run   # Run the project
gleam test  # Run the tests
Search Document