vote up 0 vote down star

Where and how do wikis that use the MediaWiki software store their articles?

flag

38% accept rate

3 Answers

vote up 7 vote down

In a MySQL database, typically.

Nowadays MediaWiki also supports other databases, such as PostgreSQL. For details, read the "Database server" section here.

Edit: as to how MediaWiki stores the articles, see Manual:Database layout for much details, such as a diagram of the database schema and the SQL for creating the tables.

link|flag
1  
Mediawiki does now (mostly) support SQLLite, so it could also be stored in a file. mediawiki.org/wiki/Manual:SQLite – Adrian Archer Jun 16 at 13:28
vote up 0 vote down

In a MySQL database. I've tried using PostgreSQL but encountered a Mediawiki bug in searching text.

link|flag
vote up 0 vote down
select * from page 
left join revision on page_id=rev_page
left join text on rev_text_id =old_id 
limit 100;

This sql-query shows which table and how MediaWiki software store their articles.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.