For example with MySQL and PHP, when a memory table is created, it will be destroyed at the end of a session, meaning another user can’t share and access the same memory table as the previous user.
Any solution for this? (No HTML cache please :))
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
MySQL
MEMORYengine stores data in memory (RAM). It has nothing to do with what PHP process is connected to MySQL. It’s MySQL ENGINE, therefore – if you connect to MySQL, you have access to data stored inMEMORYengine. Once MySQL is rebooted, the data stored inMEMORYengine is lost.On the other hand, there are temporary tables. Temporary tables are session based (based on MySQL session of course, not PHP one). Once the session ends, the table is lost.
Question is – what the heck are you trying to do and why are you constantly confusing naming? Describe what you are aiming for with these past few questions and let more experienced people tell you straight what you need to do.