Don't know Redis? Think Memcache, with support for
for lists, and disk-based storage.
You can use Redis as a database, queue, cache server or all of those combined.
Let's see how you can use this power in your PHP apps.
I still got sites running Apache, but all new projects are launched with
Nginx. I don't need many of the features that Apache offers, and the speed
gain of Nginx is just tremendous. Once you've experienced it, I doubt you'll
want to go back.
Sometimes MySQL needs to work hard. I've been working on an import script that
fires a lot of INSERTs. Normally our database server handles 1,000 inserts /
sec. That wasn't enough. So I went looking for methods to improve the speed of
MySQL inserts and was finally able to increase this number to 28,000 inserts
per second. Checkout my late night benchmarking adventures.
In PHP, sessions can keep track of authenticated in users. They are an
essential building block in today's websites with big communities and a lot of
user activity. Without sessions, everyone would be an anonymous visitor.