tollmanz / wordpress-pecl-memcached-object-cache

A WordPress object cache that uses the memcached (not memcache) PECL extension.
233 stars 114 forks source link

Does this correctly handle objects with expiration times more than 30 days in the future? #60

Closed jeffwidman closed 9 years ago

jeffwidman commented 9 years ago

See here: https://remaintenance.io/blog/2015/02/fixing-woocommerce-memcached-performance/

Basically when expiration is set more than 30 days in the future, other memcache object cache implementations have problems.

Does this implementation handle that scenario correctly?

tollmanz commented 9 years ago

Yup. We dealt with this about a year ago: https://github.com/tollmanz/wordpress-pecl-memcached-object-cache/pull/35. I find it a little silly to explicitly set an object to cache for 30+ days, but we have handled that issue.

jeffwidman commented 9 years ago

Thanks!