Showing entries 7701 to 7710 of 44089
« 10 Newer Entries | 10 Older Entries »
Comment on MariaDB 10.1 and MySQL 5.7 performance on commodity hardware by Mike

How useful is a benchmark that doesn’t stress the optimizer?

Laravel json response from controller example

If you are working with REST API then you always need to return json data response that way frontend developer can handle it easily i created bellow controller method in this method i return json array response that way you can understand very well laravel 5 provide response helper and it will

Laravel Create and Download Zip File Example using chumperzipper

Sometimes we need to create file of our project directory and give to download that zip file to users we are always prefer zip file because it is very safe and secure from virus If you want to generate zip file and donwload that file in your laravel 5 application then you do it easily using chump

How to uninstall cordova and ionic in ubuntu

If you require to remove cordova and ionic from ubuntu then you uninstall using terminal command you can uninstall cordova then you can just run bellow command I added two command one for uninstall cordova and other uninstall ionic frameworkstrongExamplestrongpre classprettyprint lang

Query Rewrite plugin can harm performance

In this blog post, we’ll discuss how the Query Rewrite plugin can harm performance.

MySQL 5.7 comes with Query Rewrite plugin, which allows you to modify queries coming to the server. (You can view the details here: https://dev.mysql.com/doc/refman/5.7/en/rewriter-query-rewrite-plugin.html.)

It is based on the audit plugin API, and unfortunately it suffers from serious scalability issues (which seems to be the case for all API-based audit plugins).

I want to share the results for sysbench OLTP RO with and without the query rewrite plugin — but with one very simple rewrite rule, which doesn’t affect any queries. This is the rule from the documentation:

INSERT INTO query_rewrite.rewrite_rules (pattern, replacement)
    -> VALUES('SELECT ?', 'SELECT ? + 1');

There are results for both …

[Read more]
MariaDB 10.1.14 and Connector/J 1.4.4 now available

The MariaDB project is pleased to announce the immediate availability of MariaDB 10.1.14, and MariaDB Connector/J 1.4.4. See the release notes and changelogs for details on these releases. Download MariaDB 10.1.14 Release Notes Changelog What is MariaDB 10.1? MariaDB APT and YUM Repository Configuration Generator Download MariaDB Connector/J 1.4.4 Release Notes Changelog About MariaDB Connector/J […]

The post MariaDB 10.1.14 and Connector/J 1.4.4 now available appeared first on MariaDB.org.

Installing Lighttpd with PHP 7 (PHP-FPM) and MySQL 5.7 on Ubuntu 16.04 LTS

Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on an Ubuntu 16.04 server with PHP 7 support (through PHP-FPM) and MySQL 5.7. PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites. I use PHP-FPM in this tutorial instead of Lighttpd's spawn-fcgi.

How to Send Mail using Sendgrid in Laravel

Sendgrid is very popular API to send email from our laravel application It is very fast to send mail and also you can track sended mail Tracking email is very important feature of Sendgrid api and you can also see how much user open your mail click on your mail too In this post i would like to s

ClusterControl Tips & Tricks: MySQL Query Performance Tuning

Bad query performance is the most common problem DBA’s have to deal with. There are numerous ways to collect, process and analyze the data related to query performance - we’ve covered one of the most popular tools, pt-query-digest, in some of our previous blog posts:

Become a MySQL DBA blog series

When you use ClusterControl though, this is not always needed. You can use the data available in ClusterControl to solve your problem. In this blog post, we’ll look into how ClusterControl can …

[Read more]
Cédric Bruderer: How to become a certified DBA

I recently managed to get my certification as MySQL 5.6 DBA, and was asked to write a blog about it, because I had trouble getting the informations I needed.

You may have figured out too, that Oracle does not really supply you with information about the certification. At least, there is the MySQL documentation. It contains all the information you need.

Further, I recommend to use a virtual linux machine in combination with our tool MyEnv. This way you can simulate multiple scenarios, including replication set-ups, and if one or two servers die during your exercises, nobody gets mad at you.

When learning, make sure to have a look at the following topics:

  • Query tuning
  • Parameters tuning
  • MySQL client tools (mysqldump, mysqladmin, ...)
[Read more]
Showing entries 7701 to 7710 of 44089
« 10 Newer Entries | 10 Older Entries »