Redis

From MediaWiki.org
Jump to: navigation, search

Redis is an open-source, networked, in-memory, key-value data store with optional durability, written in ANSI C.

Contents

MediaWiki & Wikimedia use cases for Redis [edit]

Session storage
The Wikimedia Foundation has been using Redis as a memcached replacement for session storage since the eqiad switchover in January, because it has a replication feature which can be used to synchronise data between the two data centres. It allowed us to switch from Tampa to Ashburn without logging everyone out.
Job queue
We previously stored the MW job queue in MySQL. This gave us lots of useful features, like replication and indexing for duplicate removal, but it has often been hard to manage the performance implications of the high insert rate. Among its many features, Redis embeds a Lua interpreter on the server side. The new Redis job queue class provides a rich feature set superior to the MySQL job queue, mainly through several server-side Lua scripts which provide high-level job queue functions. Redis is also used to keep a hash table that tracks which job queues actually have jobs, so runners know where to look. Updates to this table are push-based, so it is always up-to-date.
Features
Extension:GettingStarted's early implementation of a category-based recommender system has used Redis to store a list of tasks served via a Special page.

Further reading [edit]

General [edit]

Analytics [edit]

Tooling [edit]

Informed Opinions [edit]

Miscellaneous [edit]