Speed-up of readonly MyISAM table
        Posted  
        
            by Ozzy
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ozzy
        
        
        
        Published on 2010-05-06T11:04:16Z
        Indexed on 
            2010/05/06
            11:08 UTC
        
        
        Read the original article
        Hit count: 273
        
We have a large MyISAM table that is used to archive old data. This archiving is performed every month, and except from these occasions data is never written to the table. Is there anyway to "tell" MySQL that this table is read-only, so that MySQL might optimize the performance of reads from this table? I've looked at the MEMORY storage engine, but the problem is that this table is so large that it would take a large portion of the servers memory, which I don't want.
Hope my question is clear enough, I'm a novice when it comes to db administration so any input or suggestions are welcome.
© Stack Overflow or respective owner