Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 9740

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>Architecture</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="mysqlnd-ms.concepts.html">Concepts</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="mysqlnd-ms.pooling.html">Connection pooling and switching</a></div>
 <div class="up"><a href="mysqlnd-ms.concepts.html">Concepts</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="mysqlnd-ms.architecture" class="section">
  <h2 class="title">Architecture</h2>
  <p class="para">
   The mysqlnd replication and load balancing plugin is
   implemented as a PHP extension.
   It is written in C and operates under the hood of PHP. During the
   startup of the PHP interpreter, in the module init phase of the
   PHP engine, it gets registered as a
   <a href="book.mysqlnd.html" class="link">mysqlnd</a> plugin to replace selected
   mysqlnd C methods.
  </p>
  <p class="para">
   At PHP runtime, it inspects queries sent from
   mysqlnd (PHP) to the MySQL server. If a query is recognized as read-only,
   it will be sent to one of the configured slave servers. Statements are
   considered read-only if they either start with <em>SELECT</em>,
   the SQL hint <em>/*ms=slave*/</em> or a slave had been chosen for
   running the previous query, and the query started with the SQL hint
   <em>/*ms=last_used*/</em>. In all other cases, the query will
   be sent to the MySQL replication master server.
  </p>
  <p class="para">
   For better portability, applications should use the
   <strong><code>MYSQLND_MS_MASTER_SWITCH</code></strong>,
   <strong><code>MYSQLND_MS_SLAVE_SWITCH</code></strong>, and
   <strong><code>MYSQLND_MS_LAST_USED_SWITCH</code></strong>
   <a href="mysqlnd-ms.constants.html" class="link">predefined mysqlnd_ms constants</a>,
   instead of their literal values, such as <em>/*ms=slave*/</em>.
  </p>
  <p class="para">
   The plugin handles the opening and closing of database connections
   to both master and slave servers. From an application
   point of view, there continues to be only one connection handle. However,
   internally, this one public connection handle represents a pool of
   network connections that are managed by the plugin. The plugin proxies queries
   to the master server, and to the slaves using multiple connections.
  </p>
  <p class="para">
    Database connections have a state consisting of, for example, transaction
    status, transaction settings, character set settings, and temporary tables.
    The plugin will try to maintain the same state among all internal
    connections, whenever this can be done in an automatic and transparent way.
    In cases where it is not easily possible to maintain state among all
    connections, such as when using <em>BEGIN TRANSACTION</em>, the
    plugin leaves it to the user to handle.
  </p>

 </div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="mysqlnd-ms.concepts.html">Concepts</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="mysqlnd-ms.pooling.html">Connection pooling and switching</a></div>
 <div class="up"><a href="mysqlnd-ms.concepts.html">Concepts</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>