Package am.ik.redis.adapter.boot.inmemory
@NullMarked
package am.ik.redis.adapter.boot.inmemory
The adapter server built around the in-memory backend.
It is the server module's auto-configuration plus one backend: the properties that backend is tuned with, the factory bean that hands out a store per database, and the main class. That is all a server module is, whichever store is underneath, which is why this one doubles as the worked example for a store this project does not ship.
The sessions live in this process, so they do not survive a restart and are not shared
between replicas. It is the server for development, tests and a single instance;
redis-adapter-for-spring-session-server-etcd is the one for more than one.
This package is null-marked: all types and their members are non-null by default unless
explicitly annotated as @Nullable.
-
ClassDescriptionDeclares the backend this server keeps its sessions in.What the in-memory backend can be tuned with.The in-memory backend: an independent map per database, in this process.Entry point of the adapter server that keeps its sessions in this process's own memory.