You’ve re-architected a monolithic web application so state is not stored in memory on the web servers, but in a database instead. This has caused slow performance when retrieving user sessions though. What might be the best way to fix this?

Correct
Correct. Services should be stateless,and a service like Redisor Memory store provides a fast caching service to store state.They enable services to be stateless and support scale and high availability.