Skip to content

An implementation of the Tomcat SessionManager that persists data into Redis

License

Notifications You must be signed in to change notification settings

YSocket/session-managers

 
 

Repository files navigation

Pivotal Session Managers

This project contains implementations of the Tomcat PersistentManager Store.

Implementation Description
redis-store Redis store backend

Contributing

Pull requests are welcome. See the contributor guidelines for details.

Builds

Each branch, release, and pull request kicks off builds on Travis CI

Logging

This project uses SLF4J and defaults to Java Utils Logging (JUL) binding

In case you want to use another one you must to package your binder and explicit remove the JUL dependency:

            <dependency>
                <groupId>com.gopivotal.manager</groupId>
                <artifactId>session-managers</artifactId>
                <version>${session-managers.version}</version>
                <exclusions>
                    <exclusion>
                        <groupId>org.slf4j</groupId>
                        <artifactId>slf4j-jdk14</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>

License

This project is released under the Apache License, Version 2.0.

About

An implementation of the Tomcat SessionManager that persists data into Redis

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 91.4%
  • Shell 5.1%
  • Batchfile 3.5%