2
I would like to store an SQL query in a Session, that is, all fields and their respective values.
I’d say it’s about 12 fields, and about 150 records on average.
The idea is not to have to consult the database every time you need it, but only once and the others only work on the information that has already been recorded in Section.
This could be bad somehow, it would require from the server in what sense, disk space? Cxb is only worth? , Would that make the answers faster(since I no longer consult the BD this way) ?
Is Session stored on Disk? So switching from Database to Disk wouldn’t change much, memcached seems to be the solution for me, I’ll read more about it, value!
– Ale