Redis/MediaWiki

From Bibliotheca Anonoma
Revision as of 00:58, 17 January 2017 by Antonizoon (talk | contribs)

Redis can be used as an alternative to memcached, and function as the job queue (no more running runJobs.php)

https://blog.go2tech.de/2016/02/the-jobqueue-how-droidwiki-de-runs-jobs/

Redis with HHVM

Redis support is built into HHVM. You can just set redis as a save handler in HHVM.

/etc/hhvm/php.ini
session.save_handler = redis
session.save_path = "tcp://localhost:6379"

Once that's done, set that in mediawiki as well.