Memcached Test

Warning: Hard Core Dorkage!

Here’s a little simple memcached test you can have to test memcached on your system. I am working on an app that, while the server load is not huge, the datasets that you are presenting to a visitor are larger than normal for a web app, and so I ultimately plan to break them into subsets and only load the subset the user is focusing on and cache the rest.  Hopefully most users will confine their activities to items from the same subset so we won’t be thrashing too much. Anyway we’re a long way from that day. I just installed the memcached and tested it with telnet, and I got it all hooked into the whole PHP Apache tangle.  So now we’re going to cache some data and see if it works.
Continue reading Memcached Test