Java based samples of various usages of Apache Ignite in-memory distributed data fabric
Ignite is a memory-centric data platform
that is strongly consistent
and highly available
with powerful SQL,
key-value and processing APIs
for more info follow Apache Ignite official web site https://ignite.apache.org/
- Ignite distributed cache
- Ignite compute
- Ignite data structures
- Ignite in-memory file system
- Ignite messaging
- Ignite distributed services
Can be executed through command line
This demonstrates http servlet session distribution through multiple server instances. Session values can be accessed from any sever. In this example session is partitioned through out nodes. Ignite allows to session replication also. Please check ignite documentation for more details.
This demonstrates login session distribution through multiple server instances in Spring MVC + Spring security application. Login session can be accessed from any server node.
> Java version: JDK 8
> Build tool: maven 3+
> Appication/servlet container: Apache Tomcat (for Web based session distribution & Spring MVC + Spring security session distribution)