# `Charon.SessionStore.LocalStore`
[🔗](https://github.com/weareyipyip/charon/blob/v4.3.0/lib/charon/session_store/local_store.ex#L1)

An in-memory persistent session store, implements behaviour `Charon.SessionStore`.
In addition to the required callbacks, this store also provides `get_all/3` and `delete_all/3` (for a user) functions.

## Usage

Add this store to your supervision tree to use it.

    children = [
      Charon.SessionStore.LocalStore
    ]

# `child_spec`

Returns a specification to start this module under a supervisor.

See `Supervisor`.

# `start_link`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
