Em 17/11/2013 22:02, Gavin Flower
escreveu:
Yes, those optimizations I was talking about: having database server store transaction log in high speed solid state disks and consider it done while background thread will update data in slower disks... There is no reason to wait for fsync in slow disks to guarantee consistency... If database server crashes, then it just need to "redo" log transactions from fast disk into slower data storage and database server is ready to go (I think this is Sybase/MS SQL strategy for years). Also, consider to have lazy loading (current?) or eager loading (perhaps, I just learned a bit about pg_warmcache). And, of course, indexes that would point to pages in disk to memory areas when in RAM - as you just mentioned. Regards, Edson |