Re: Memory tables safer for session tables?
Assuming that "secure" means here the un-accessibility of the data for unauthorized people, I think MEMORY tables are more secure. While disk based tables are accessible via the filesystem and could be copied into another MySQL database, MEMORY tables are accessible within the address space of the process only. The latter could be copied too, but finding the data within it is definitely more complicated than using the table files on another database.
However, MEMORY tables are an option only if the session info does not need to survive server shutdown/crash.
Subject
Views
Written By
Posted
7332
May 24, 2005 05:24PM
Re: Memory tables safer for session tables?
4382
May 25, 2005 01:37AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.