Memcached 2
Memcached is a distributed object caching system which allows applications to store chunks of data in memory for recall making queries and compile times quicker. This section is a collection of tutorials pertaining to it.
How to Save PHP Sessions in Memcached
Memcached is a high performance storage engine designed for storing chunks for data, so it is great for storing sessions in it. The upside of doing this you notice a performance benefit from not writing these disk or a database is that you gain a performance increase. The downside is that memcached isn’t saving anything, […]
How To Install Memcached on CentOS
Memcached is a high-performance caching system that is primarily used to speed up sites that rely on databases. It is an in-memory system for storing any data that could be from database calls or page requests. To read more about Memcached you can view the project wiki on github Clean out the repository: yum clean […]
Most Commented