Wheb-0.3.1.0: The frictionless WAI Framework

Safe HaskellNone
LanguageHaskell2010

Web.Wheb.Plugins.Debug.MemoryBackend

Synopsis

Documentation

data SessionData Source

Constructors

SessionData 

Fields

sessionMemory :: TVar (Map Text (Map Text Text))
 

Instances

SessionBackend SessionData

In memory session backend. Session values will not persist after server restart.

data UserData Source

Constructors

UserData 

Instances

AuthBackend UserData

In memory auth backend. User values will not persist after server restart.

data CacheData Source

Constructors

CacheData 

Fields

cacheStorage :: TVar (Map Text ByteString)
 

Instances

CacheBackend CacheData

In memory cache backend. Cache value will not persist after server restart and will never clear old values.