MySQL Forums
Forum List  »  Newbie

Re: How do I load a copy of a table into RAM for frequent reading?
Posted by: Peter Brawley
Date: October 24, 2021 10:38PM

You can create it as a table that uses the Memory engine, but that shouldn't be necessary, read about MySQL memory management ...

https://dev.mysql.com/doc/refman/8.0/en/memory-use.html
http://mysql.rjweb.org/doc.php/memory

InnoDB keeps frequently accessed tabls in RAM. Ensure that buffer size is set large enough to ensure that all such tables fit in RAM.

Options: ReplyQuote


Subject
Written By
Posted
Re: How do I load a copy of a table into RAM for frequent reading?
October 24, 2021 10:38PM


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.