Speeding up Koha with memcached
Monday, March 23rd, 2009 by john.beppuAnyone who has ever watched the MySQL query log while koha serves requests knows that koha makes A LOT of repetitive SQL queries for every request. Most of these requests are for individual values in the systempreferences table. There is also another large batch of queries for data from the language_descriptions table. The queries are not that heavy by themselves, but there are way too many of them happening per request, and it’s for the same data every time.
In an attempt to minimize the number of repetitive queries, I tried to make koha use memcached.
