MySQL Forums
Forum List  »  Memory Storage Engine

Re: Memory tables safer for session tables?
Posted by: Ingo Strüwing
Date: May 25, 2005 01:37AM

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.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Memory tables safer for session tables?
4323
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.