]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Enable memcache automatic compression, starting at 20k and only if compression gain...
authorCraig Andrews <candrews@integralblue.com>
Mon, 4 Jan 2010 17:49:25 +0000 (12:49 -0500)
committerCraig Andrews <candrews@integralblue.com>
Mon, 4 Jan 2010 17:49:25 +0000 (12:49 -0500)
Allows storage of larger objects (over 1mb in size uncompressed), such as huge LDAP schemas.
Should also improve cache efficiency (allows more stuff to be stored in same memory) and reduce network latency (less data transfer)

(redo commit 1e9c03e1993b5d2978ac4c5213a8a64e0150b4a2 which was apparently lost during pluginization)

plugins/MemcachePlugin.php

index acbec135e4ffe07b938631deaccff14c37643948..78e2b24067931e487c373e97aba3f20b7b5693a6 100644 (file)
@@ -156,6 +156,11 @@ class MemcachePlugin extends Plugin
                 }
                 $this->_conn->addServer($host, $port);
             }
+            //Compress items stored in the cache if they're over 2k in size
+            //and the compression would save more than 20%.
+            //Allows the cache to store objects larger than 1MB (if they
+            //compress to less than 1MB), and improves cache memory efficiency.
+            $this->_conn->setCompressThreshold(20000, 0.2);
         }
     }
 }