June 18, 2013

Post: MySQL 5.6 - InnoDB Memcached Plugin as a caching layer

…/en/innodb-memcached-setup.html As a quick benchmark, I ran some batches of fetch and store against both a standard memcached instance… the rough code for this benchmark: // Identical config/code for memcached vs InnoDB $frontendOpts = array( ‘caching’ => true, ‘lifetime’ => 3600, ‘automatic_serialization’ => true ); $memcacheOpts…

Comment: MySQL 5.6 - InnoDB Memcached Plugin as a caching layer

More simplistic Memcache vs. Memcache observations: http://blog.ulf-wendel.de/2013/toying-with-peclmysqlnd_memcache-and-mysql-5-6-memcache-innodb/ HandlerSocket vs Memcache is hard to… 5.6 (yet). If you compare HS @ 5.5 with InnoDB Memcache @ 5.6 you should see roughly the same performance with…

Comment: MySQL 5.6 - InnoDB Memcached Plugin as a caching layer

… 12 hours. In memcached side I can set cache life time as 12hours. Can this apply to the MySQL innodb memcache? i.e. will the cache being delete off innodb table after 12hours or they remain… comparison between performance of 5.6 memcached innodb write/read vs 5.6 innodb write/read with no memcached layer? Currently I am considering any…

Post: MySQL-Memcached or NOSQL Tokyo Tyrant - part 3

… almost 2x faster then combining memcached and MySQL, and about 20% slower then the all memory memcached approach.  So for this… does performance differ or change?  One knock on Tokyo -vs- Memcached is Tokyo is not distributed by default.  Now that…  Also interesting is I started to hit bottlenecks in MySQL/Innodb when I had enough memory but I increased the threads…

Post: Read/Write Splitting with PHP Webinar Questions Followup

… on successive queries. Q: Is RBR faster replicating vs SBR replication?  RBR is faster than statement based, …SESSION in an in-memory data store such as Memcached or APC.  Store in $_SESSION only values that … with using a write-through cache? A: The InnoDB buffer pool is effectively a type of write-…