suetin / pomodoro

A simple WordPress translation cache

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WordPress Translation Cache

The WordPress gettext implementation is very slow. It uses objects that cannot be cached into memory without reinstanting them.

pomodoro stores all seen translations as a PHP hashtable (array), that can be subsequently stored into a file as PHP code and levereged via OPcache when loaded.

Moreover, pomodoro does lazyloading for strings that are only encountered in output. It does not preload everything it can for a domain until there's no other choice.

But does it really work?

We think so :)

Example on a vanilla ru_RU locale WordPress site:

Before:

Before

After:

After

Installation

Drop pomodoro.php into wp-content/mu-plugins and enjoy the added speed :)

The more plugins you have the better the performance gains.

You can use POMODORO_CACHE_DIR constant to change cache directory (needs full path).

Support

Let us know how it goes at support@pressjitsu.com ;)

License

GPLv3

About

A simple WordPress translation cache

License:GNU General Public License v3.0


Languages

Language:PHP 100.0%