-
Recent Posts
-
Recent Comments
- Mark Callaghan on Blowing up in memory
- Mark Callaghan on on MySQL replication prefetching
- Marko on Blowing up in memory
- Marko on Blowing up in memory
- hashar on Google :-(
Tag Archives: efficiency
Blowing up in memory
MySQL isn’t too concerned about table handler memory usage – it will allocate row size buffer thrice per each table invocation. There’s a few year old bug discussing UNION memory usage – for each mention in an union one can allocate … Continue reading
Memcached for small objects
Memcached quite often ends up as a store for very small objects (small key and some integer value), though it isn’t really designed to do this kind of work by default. Current memory management is based on slabs (200 of … Continue reading
Wasting InnoDB memory
I usually get strange looks when I complain about memory handling inside InnoDB. It seems as if terabytes of RAM are so common and cheap, that nobody should really care about memory efficiency. Unfortunately for me, I do. Examples: The … Continue reading
LAMPS on steroids
I’m not sure if I’m the first coining in ‘LAMPS’ – scaled out LAMP environment with Squid in front, but it sounds cool. Squid is major component in content distribution systems, reducing the load from all the backend systems dramatically … Continue reading