Architecture guide

From semantic-mediawiki.org
(Redirected from Architecture guide)
Developer manualArchitecture guideAPI modules
Architecture guide
Describes some parts of the software architecture of Semantic MediaWiki
Keywords
Table of Contents

This page explains the software architecture of Semantic MediaWiki on a high level. It is intended to help developers to get started with Semantic MediaWiki development by understanding the main concepts. Another important goal of this page is to clarify the architectural choices that are underlying the PHP implementation.

Datamodel[edit]

Datamodel contains the most essential architectural choice of Semantic MediaWiki for the management of its data including:

  • DataItem represents the system perspective on the data to interact with a database
  • SemanticData represent semantic information, a collection of DataItem objects need to be combined into facts
  • DataValue represents the user perspective on data which includes input and output specific rules together with Datatypes

Database schema[edit]

Database schema contains some information about the database schema and available tables used by the SQLStore.

API modules[edit]

API modules

Hooks[edit]

Hooks

Storage and query engine[edit]

See also[edit]