-
I am Silvan Mühlemann, tilllate.com-Co-founder, jQuery and Zend Framework-Coder, Scrum-Master, Dual-Daddy, Runner
This blog reflects my thoughts on web technologies and management of web projects.
Recent Comments
- Email spam a css method — Stofke on wheels on Nine ways to obfuscate e-mail addresses compared
- Maryada on Round Robin Data Storage in MySQL
- Maarten Manders on ORM tool or handwritten SQL?
- Silvan Mühlemann on “No laptops” at meetings?
- Walter Schärer on “No laptops” at meetings?
My profiles
Meta
Tag Archives: mysql
Round Robin Data Storage in MySQL
If you want to store large amount of volatile data (e.g. log file entries) in a database with a constant storage memory footprint and no maintenance to purge the old entries, a round robin database is the best solution. But … Continue reading
Pitfalls with MySQL and auto_increment
There’s a number of pitfalls one should be aware of when working with AUTO_INCREMENT fields in MySQL. Last week, we fell in each of them: We have the table photos which contains all 15 million pictures on tilllate.com. This table … Continue reading
Comparing queries with mk-query-profiler and diff
EXPLAIN is not the only way to analyze query perfomance im MySql because some things are not being taken into account. For example LIMIT clauses or the cost of the optimizer. There is also the mk-query-profiler. An interesting way to … Continue reading