Is a Tomcat Session Manager Implementation that uses Apache Cassandra (NoSQL)-DB as an object store.
This Project uses Maven as Build-System.
With Maven installed you can run
mvn install
to build the project.
To run the example application too, specify a profile
mvn install -PwithExample
In your Webapplication create an folder META-INF where you put a file context.xml with a Manager-declaration
<?xml version="1.0" encoding="UTF-8"?>
<Context>
<Manager className="de.jbellmann.tomcat.cassandra.CassandraManager"
hosts="localhost:9160"
maxActiveConnections="5"
logSessionsOnStartup="true"/>
</Context>