Hi Steinar,
The reason of hard to scale your application is session is been put in jvm. You
can try to take session out of jvm into some sort of database or cache like
EhCache, memcached, Redis. If you put session in Redis, you can try my project
https://github.com/alexxiyang/shiro-redis . Tha
You would need to use something like EhCache or Hazelcast (or define your
own cache impl)
Does that help?
On Tue, Nov 13, 2018 at 1:14 PM Steinar Bang wrote:
> > Brian Demers :
>
> > Take a look at
> >
> https://shiro.apache.org/session-management.html#SessionManagement-SessionClustering
>
> Brian Demers :
> Take a look at
> https://shiro.apache.org/session-management.html#SessionManagement-SessionClustering
> But these techniques are typically tied to applications running on the same
> domain.
Thanks! :-)
All of my applications are running in the same domain, on the same
serv