Happy Monday, folks. How are y'all handling sessio...
# docker
l
Happy Monday, folks. How are y'all handling sessions in Dockerized CFML apps in production? We've always used either sticky sessions alone or with J2EE session replication. I'm currently more interested in info about CF2021 than Lucee.
p
Redis
m
using Lucee, but the same answer. Redis.
l
Cool. Thanks, y'all!
Can you put objects (CFC instances) into the session when it's backed by Redis?
m
I'm not sure - we don't - just basic struct/array/num/string.
l
That's certainly a smarter approach 🙂
t
Redis here as well
b
Redis or Couchbase external cache in conjunction with Lucee external clustered session storage.
c
@Leon Miller-Out We're using Redis (with Lucee) but had to change back from j2ee to cfml sessions. Also using Redis as a shared cache between containers and it seems to be able to handle any type of object.
l
Awesome. Thanks!