Where and how do wikis that use the MediaWiki software store their articles?
+8
A:
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.
Jonik
2009-06-15 18:25:17
Mediawiki does now (mostly) support SQLLite, so it could also be stored in a file. http://www.mediawiki.org/wiki/Manual:SQLite
Adrian Archer
2009-06-16 13:28:01
A:
In a MySQL database. I've tried using PostgreSQL but encountered a Mediawiki bug in searching text.
Reed Hedges
2009-06-15 19:02:06
A:
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.
ZA
2009-07-07 08:34:55