serversession/serversession-backend-persistent
Felipe Lessa 8a6df8cc6c Add persistent storage tests to using SQLite and PostgreSQL.
Currently failing tests:

  1) SqlStorage on PostgreSQL insertSession throws an exception if a session already exists
  2) SqlStorage on PostgreSQL replaceSession throws an exception if a session does not exist
  3) SqlStorage on SQLite insertSession throws an exception if a session already exists
  4) SqlStorage on SQLite replaceSession throws an exception if a session does not exist
2015-05-28 00:38:49 -03:00
..
src/Web/ServerSession/Backend Support for idle timeouts, absolute timeouts and non-persistent cookies. 2015-05-25 19:48:12 -03:00
tests Add persistent storage tests to using SQLite and PostgreSQL. 2015-05-28 00:38:49 -03:00
.gitignore Add persistent storage tests to using SQLite and PostgreSQL. 2015-05-28 00:38:49 -03:00
LICENSE Separate into three different packages. 2015-05-23 01:42:13 -03:00
README.md Separate into three different packages. 2015-05-23 01:42:13 -03:00
serversession-backend-persistent.cabal Add persistent storage tests to using SQLite and PostgreSQL. 2015-05-28 00:38:49 -03:00

serversession-backend-persistent

This is the storage backend for serversession using persistent and an RDBMS. Please read the main README file for general information about the serversession packages.

Unfortunately it is not easy to support all persistent backends on a single package, and this is why we currently support the SQL backend only (which is more commonly used).