Database High Performance Lists MySQL Programming Scalability
Ah now this is pure gold, 21 things to keep in mind when coding for MySQL. Most of these I knew but it was good to be reminded. Some of them are entirely new to me though:
Priceless information. I’ll be referring back to this list over and over again.
Database High Performance MySQL Scalability
The MySQL Tuning Primer script takes information from “SHOW STATUS LIKE…” and “SHOW VARIABLES LIKE…” then attempts to produce sane recommendations for tuning server variables. It is compatible with all versions of MySQL 3.23 - 5.1.
Database High Performance MySQL Scalability
Database guru Jeremy Zawodny helps us out with a handful of MySQL tweaks for high-volume databases that could boost their performance.
Apache Framework MySQL OS X PHP Software Web Design Web Server Windows WordPress
Apache Database High Performance Linux MySQL Open Source PHP Scalability Unix Web Server
If you’re reaching the limits of your Apache server because you’re serving a lot of dynamic content, you can either spend thousands on new equipment or reduce bloat to increase your server capacity from 2 to 10 times. This article concentrates on important and weakly documented ways of increasing capacity without the need for additional hardware.
Database MySQL PHP Programming Security
PHP is one of the most popular programming languages for the web. Sometimes a feature-friendly language can help the programmer too much, and security holes can creep in, creating roadblocks in the development path. Here are 5 tips to help you avoid some common PHP security pitfalls and development glitches.
Apache Linux Lists MySQL Photoshop Programming Unix Web Design Web Server WordPress
As a programmer/web-designer I dip into a diverse range of programming languages and frameworks. I often find that I get locked into a specific coding grammar/syntax and that it is then difficult to switch to a new one. This is when I find the following cheat sheets invaluable (and indeed comforting).
Changelog Database Graphics MySQL Scalability Weblog WordPress
I’m currently engaged in the process of trying boost the performance of this website as some of the page weights and loading times are horrific (God, how I miss mod_perl). These are the steps I’ve taken so far:
Obviously I’ll document things here as I progress.
Performing a case-sensitive search-and-replace through a table is easy with MySQL when you know how.
update table_name set table_field = replace(table_field,'replace_that','with_this');
So, for example, let’s say you have a table called “posts” with a data stored in a field called “content” and you want to replace all instances of the word “dog” with “cat”, then your SQL would look like this:
update posts set content = replace(content,'dog','cat');
How cool is that?