wai-session-redis: Simple Redis backed wai-session backend.

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Simple Redis backed wai-session backend. This module allows you to store session data of wai-sessions in a Redis database.


[Skip to Readme]

Properties

Versions 0.1.0.0, 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.1.0.5
Change log None available
Dependencies base (>=4.10.0 && <5), bytestring (>=0.10 && <0.11), cereal (>=0.5.8 && <0.5.9), data-default (>=0.7 && <0.8), hedis (>=0.14 && <0.15), http-types (<0.13), vault (>=0.3.1 && <0.3.2), wai (>=3.2 && <3.3), wai-session (>=0.3.3 && <0.3.4), wai-session-redis, warp (<3.3.15) [details]
License BSD-3-Clause
Copyright (c) 2021 t4ccer
Author t4ccer
Maintainer t4ccer@gmail.com
Category Web
Home page https://github.com/t4ccer/wai-session-redis#readme
Bug tracker https://github.com/t4ccer/wai-session-redis/issues
Source repo head: git clone https://github.com/t4ccer/wai-session-redis
Uploaded by t4ccer at 2021-04-10T13:26:05Z

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for wai-session-redis-0.1.0.0

[back to package description]

wai-session-redis

Provides Redis based session store for Network.Wai.Session
For example usage view example/Main.hs

Tests

To run tests wai-session-redis must have access to running redis instance.

Using docker

docker run --name redis-session-tests -p 6379:6379 -d redis
stack test
docker rm -f redis-session-tests