There has been lot of talk about performance with kirby. I have recently found out about one neat thing about cashing.
I have small VPS running ubuntu with few websites on there, recently ive noticed this on my VPS. This is htop showing memory usage - the green is 227MB of ram vps is currently using. I wondered what is the yellow.
It turns out is OS memory cache - i asked around some linux people and it seems that its linux being awesome cashing files that i read from disk often (if there is enough spare ram). Yes that means PHP scripts and .md files kirby has to read.
I had no idea linux does this.
Kirby still has to generate requested html files if you dont have some cashing turned on but its whole lot faster than reading from disk. And if you have even the simple file cashing turned on - that cashed page will probably get to the ram and will be served blazingly fast.