Home
Forums
New posts
Search forums
What's new
New posts
New resources
New profile posts
Latest activity
Resources
Latest reviews
Search resources
Members
Current visitors
New profile posts
Search profile posts
DMCA Policy
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
FEEL FREE TO SHARE TUTORIALS, YOUR SKILS & KNOWLEDGE ON CODING, SCRIPTS, THEMES, PLUGINS OR ANY RESOURCES YOU HAVE WITH THE COMMUNITY-
Click Here To Post Your Request,
JOIN COMPUTER REPAIR FORUM
Home
Forums
WEB DEVELOPMENT CODING
PHP
What is PHP’s MySQL and How It functioning
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Pavan" data-source="post: 33" data-attributes="member: 10"><p>MySQL is the most sought-after database server used with PHP. In fact, PHP web applications are connected to MySQL server by default. Although, some people also use other database servers like Oracle, <a href="https://www.thecrazyprogrammer.com/search/label/SQL" target="_blank">SQL</a> Server etc. for data storage, but for handling the web workload, MySQL is the most commonly used database.</p><p>In the past – PHP’s mysql extension, PHP’s mysqli and the PDO MYSQL driver – used MySQL Client Library (also known as libmysqlclient) – for communicating with the MySQL database server. But, libmysqlclient interface wasn’t optimized for interaction with PHP applications, as the library was primarily built keeping C applications in mind. That’s why, a replacement to the libmysqlclient was developed, called as the MySQL Native Driver (also referred to as mysqlnd); mysqlnd is also a library that provides almost similar functionality as provided by MySQL Client Library.</p><p></p><p>The MySQL Native Driver was made available in PHP 5.3. And it has been the default library that is used to connect to the MySQL Server since the release of PHP 5.4 (although, you can even compile against libmysqlclient). The MySQL Native Driver offers additional features, improved performance, and better memory usage compared to libmysqlclient.</p><p>In this post we’ll talk about how you can perform read/write splitting easily with help of PHP’s MySQLnd. But before that it is important to learn about mysqlnd installation process. Also, we’ll discuss about MySQL Native Driver Plugins that you’ll require in read/write splitting.</p><h4><strong>Installation</strong></h4><p>For installing mysqlnd, we’ll have to compile one out of the three MySQL extensions named “ext/pdo_mysql”, “ext/mysqli” and “ext/mysql”. Remember, not to define the path to the MySQL Client Library ( libmysqlclient) in each instance.</p><p style="text-align: center"><a href="http://2.bp.blogspot.com/--F8zWCvHlnM/VJhY9izp5PI/AAAAAAAADUI/g5B3WLfu5VI/s1600/What%2Bis%2BPHP%E2%80%99s%2BMySQLnd%2Band%2BHow%2BIt%2BPerforms%2BEasy%2BReadWrite%2BSplitting.png" target="_blank"><img src="http://2.bp.blogspot.com/--F8zWCvHlnM/VJhY9izp5PI/AAAAAAAADUI/g5B3WLfu5VI/s1600/What%2Bis%2BPHP%E2%80%99s%2BMySQLnd%2Band%2BHow%2BIt%2BPerforms%2BEasy%2BReadWrite%2BSplitting.png" alt="What is PHP’s MySQLnd and How It Performs Easy Read/Write Splitting?" class="fr-fic fr-dii fr-draggable " style="" /></a></p><p><strong>Note:</strong> Installation of ext/mysql or ext/mysqli, automatically enables the third extension – ext/pdo_mysql.</p><p>Furthermore, you can choose an extension, by selecting one or more configure flags as listed below:</p><p> <strong>–with-mysql</strong></p><p><strong></strong></p><p><strong> –with-mysqli</strong></p><p><strong></strong></p><p><strong> –with-pdo-mysql</strong></p><p>Lastly, keep in mind that in case you’re using Debian, or Ubuntu operating system, you can install the php5-mysqlnd package without a fuss using the following line of code:</p><p><strong>$ sudo apt-get install php5-mysqlnd</strong></p><p>This will help you get rid of the libmysqlclient php5-mysql package, and instead will let you include all three MySQL extensions.</p><h4><strong>List of MySQL Native Driver Plugins</strong></h4><p>MySQL Native Driver not only provide performance benefit, but the biggest benefit it provide is its plugins. You can access the plugins through PECL, and install them using the following line of code:</p><p><strong>$ pecl install mysqlnd_<name></strong></p><p>Let’s discuss about some of the stable plugins:</p><ul> <li data-xf-list-type="ul">mysqlnd_ms: Helps to carry out read or write splitting between the “master and slave” servers effortlessly, with help of simple load balancing.</li> <li data-xf-list-type="ul">mysqlnd_qc: It embeds a simple query cache to PHP</li> <li data-xf-list-type="ul">mysqlnd_uh: It lets you write mysqlnd plugins in PHP</li> </ul><h4><strong>Performing Read/Write Splitting</strong></h4><p>In order to split reads and writes, we’ll be using the mysqlnd_ms plugin.</p><h4><strong>Configuration</strong></h4><p>After installation of the mysqlnd_ms plugin using PECL, we’ll have to configure php.ini as well as the mysqlnd_ms configuration file.</p><p>In php.ini, we’ll add the following lines of code:</p><p></p><p>Next, create the mysqlnd_ms.json file, which helps to determine the master and slave servers. In addition, the file also help define the “read or write splitting” and “load balancing strategies”.</p><p>Our configuration file consists of one master and one slave:</p><p></p><p>You only need to make changes to one setting called as host, and all others are optional.</p><h4><strong>Routing Queries</strong></h4><p>The mysqlnd_ms plugin transparently route the queries – by default – that starts with SELECT to the slave servers. Besides this, the plugin route the queries that doesn’t start with SELECT to the master.</p><p>This can prove good as well as bad for you. Well, being transparent spares you from making any changes to the code. However, you won’t be able to know whether a query is read-only or not, as the plugin doesn’t analyze the query.</p><p>Apart from not only sending a query that does not start with SELECT to the master, the plugin will send a write query with “SELECT..into the slave” that can prove to be a disaster. Fortunately, the plugin boasts the ability to provide hint regarding sending the query to the right server (i.e. master or slave server). For this, it places one among the below listed three SQL hint constants within the query:</p><p></p><p>In order to use any one of the SQL hints, we’ll need to add a comment prior to the query. One of the easiest way to so requires using sprintf(). Let’s consider an example, where the mysqlnd_ms plugin is sending a SELECT to the master, using the first SQL hint constant:</p><p></p><p>Below mentioned query is used for not sending a SELECT to a slave, using the second SQL hint as discussed above:</p><p></p><p>Now, let’s consider an example where the last hint will help you ensure how the same connection is used just like the one for the query mentioned above. This will ensure that switch from the master to reading has been made, after the data is modified, but still hasn’t replicated. In addition, it also ensure that the switch is made when carrying out certain transactions including both read as well as write statements.</p><p></p><h4>Conclusion</h4><p>You can split read or write between servers using the mysqlnd_ms plugin. It’s a useful plugin, especially when you want to move large legacy PHP applications to using distributed read/write. Though the plugin might not appear to be perfect to many users, but it will definitely get you 80-90% of success – and you’ll be able to move most applications – without fiddling with the code.</p><p><strong>Author Bio</strong></p><p><em>Maria Mincey is a web developer by profession and a writer by hobby and works for Xicom Technologies, a PHP development company. She loves sharing information regarding PHP development tips & tricks. If you are looking forward to <a href="http://www.xicom.biz/offerings/hire-php-programmers/" target="_blank">hire PHP developers</a> then just get in touch with her.</em></p></blockquote><p></p>
[QUOTE="Pavan, post: 33, member: 10"] MySQL is the most sought-after database server used with PHP. In fact, PHP web applications are connected to MySQL server by default. Although, some people also use other database servers like Oracle, [URL='https://www.thecrazyprogrammer.com/search/label/SQL']SQL[/URL] Server etc. for data storage, but for handling the web workload, MySQL is the most commonly used database. In the past – PHP’s mysql extension, PHP’s mysqli and the PDO MYSQL driver – used MySQL Client Library (also known as libmysqlclient) – for communicating with the MySQL database server. But, libmysqlclient interface wasn’t optimized for interaction with PHP applications, as the library was primarily built keeping C applications in mind. That’s why, a replacement to the libmysqlclient was developed, called as the MySQL Native Driver (also referred to as mysqlnd); mysqlnd is also a library that provides almost similar functionality as provided by MySQL Client Library. The MySQL Native Driver was made available in PHP 5.3. And it has been the default library that is used to connect to the MySQL Server since the release of PHP 5.4 (although, you can even compile against libmysqlclient). The MySQL Native Driver offers additional features, improved performance, and better memory usage compared to libmysqlclient. In this post we’ll talk about how you can perform read/write splitting easily with help of PHP’s MySQLnd. But before that it is important to learn about mysqlnd installation process. Also, we’ll discuss about MySQL Native Driver Plugins that you’ll require in read/write splitting. [HEADING=3][B]Installation[/B][/HEADING] For installing mysqlnd, we’ll have to compile one out of the three MySQL extensions named “ext/pdo_mysql”, “ext/mysqli” and “ext/mysql”. Remember, not to define the path to the MySQL Client Library ( libmysqlclient) in each instance. [CENTER][URL='http://2.bp.blogspot.com/--F8zWCvHlnM/VJhY9izp5PI/AAAAAAAADUI/g5B3WLfu5VI/s1600/What%2Bis%2BPHP%E2%80%99s%2BMySQLnd%2Band%2BHow%2BIt%2BPerforms%2BEasy%2BReadWrite%2BSplitting.png'][IMG alt="What is PHP’s MySQLnd and How It Performs Easy Read/Write Splitting?"]http://2.bp.blogspot.com/--F8zWCvHlnM/VJhY9izp5PI/AAAAAAAADUI/g5B3WLfu5VI/s1600/What%2Bis%2BPHP%E2%80%99s%2BMySQLnd%2Band%2BHow%2BIt%2BPerforms%2BEasy%2BReadWrite%2BSplitting.png[/IMG][/URL][/CENTER] [B]Note:[/B] Installation of ext/mysql or ext/mysqli, automatically enables the third extension – ext/pdo_mysql. Furthermore, you can choose an extension, by selecting one or more configure flags as listed below: [B]–with-mysql –with-mysqli –with-pdo-mysql[/B] Lastly, keep in mind that in case you’re using Debian, or Ubuntu operating system, you can install the php5-mysqlnd package without a fuss using the following line of code: [B]$ sudo apt-get install php5-mysqlnd[/B] This will help you get rid of the libmysqlclient php5-mysql package, and instead will let you include all three MySQL extensions. [HEADING=3][B]List of MySQL Native Driver Plugins[/B][/HEADING] MySQL Native Driver not only provide performance benefit, but the biggest benefit it provide is its plugins. You can access the plugins through PECL, and install them using the following line of code: [B]$ pecl install mysqlnd_<name>[/B] Let’s discuss about some of the stable plugins: [LIST] [*]mysqlnd_ms: Helps to carry out read or write splitting between the “master and slave” servers effortlessly, with help of simple load balancing. [*]mysqlnd_qc: It embeds a simple query cache to PHP [*]mysqlnd_uh: It lets you write mysqlnd plugins in PHP [/LIST] [HEADING=3][B]Performing Read/Write Splitting[/B][/HEADING] In order to split reads and writes, we’ll be using the mysqlnd_ms plugin. [HEADING=3][B]Configuration[/B][/HEADING] After installation of the mysqlnd_ms plugin using PECL, we’ll have to configure php.ini as well as the mysqlnd_ms configuration file. In php.ini, we’ll add the following lines of code: Next, create the mysqlnd_ms.json file, which helps to determine the master and slave servers. In addition, the file also help define the “read or write splitting” and “load balancing strategies”. Our configuration file consists of one master and one slave: You only need to make changes to one setting called as host, and all others are optional. [HEADING=3][B]Routing Queries[/B][/HEADING] The mysqlnd_ms plugin transparently route the queries – by default – that starts with SELECT to the slave servers. Besides this, the plugin route the queries that doesn’t start with SELECT to the master. This can prove good as well as bad for you. Well, being transparent spares you from making any changes to the code. However, you won’t be able to know whether a query is read-only or not, as the plugin doesn’t analyze the query. Apart from not only sending a query that does not start with SELECT to the master, the plugin will send a write query with “SELECT..into the slave” that can prove to be a disaster. Fortunately, the plugin boasts the ability to provide hint regarding sending the query to the right server (i.e. master or slave server). For this, it places one among the below listed three SQL hint constants within the query: In order to use any one of the SQL hints, we’ll need to add a comment prior to the query. One of the easiest way to so requires using sprintf(). Let’s consider an example, where the mysqlnd_ms plugin is sending a SELECT to the master, using the first SQL hint constant: Below mentioned query is used for not sending a SELECT to a slave, using the second SQL hint as discussed above: Now, let’s consider an example where the last hint will help you ensure how the same connection is used just like the one for the query mentioned above. This will ensure that switch from the master to reading has been made, after the data is modified, but still hasn’t replicated. In addition, it also ensure that the switch is made when carrying out certain transactions including both read as well as write statements. [HEADING=3]Conclusion[/HEADING] You can split read or write between servers using the mysqlnd_ms plugin. It’s a useful plugin, especially when you want to move large legacy PHP applications to using distributed read/write. Though the plugin might not appear to be perfect to many users, but it will definitely get you 80-90% of success – and you’ll be able to move most applications – without fiddling with the code. [B]Author Bio[/B] [I]Maria Mincey is a web developer by profession and a writer by hobby and works for Xicom Technologies, a PHP development company. She loves sharing information regarding PHP development tips & tricks. If you are looking forward to [URL='http://www.xicom.biz/offerings/hire-php-programmers/']hire PHP developers[/URL] then just get in touch with her.[/I] [/QUOTE]
Insert quotes…
Verification
Post reply
Richest Freecoded User
Most Freecoin
freecoded
4,876 Freecoin
J
Johnhendrick
645 Freecoin
S
Smith16
607 Freecoin
Davy200
590 Freecoin
nathan69
426 Freecoin
Laureine
415 Freecoin
A
anajeen
395 Freecoin
C
codeguru
282 Freecoin
Tekera
267 Freecoin
P
Peterparker87
239 Freecoin
Home
Forums
WEB DEVELOPMENT CODING
PHP
What is PHP’s MySQL and How It functioning
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.
Accept
Learn more…
Top