I am storing a lot of variables in session, which is creating a performance problem. So, I have been asked to store it somewhere else, I can store it in the database, but that would again be slow.
Is there any better alternative to store session variables? Global variable are per file/request. While cookies will open the variables to users and will not keep it server side.
Thanks in advance for your answers!