Redis與MySQL基準測試

咱們比較看一下這兩個流行的數據庫選項,即再次使NoSQL和SQL數據庫相互競爭。

在本文中,經過優銳課核心java學習筆記中,咱們將討論Redis和MySQL的性能基準測試。 咱們將從在Ubuntu上引入和安裝Redis開始。 而後,咱們將朝着這二者之間的基準測試邁進。碼了不少專業的相關知識, 分享給你們參考學習

一、Redis簡介

根據官方網站的說法,Redis是一種開源(BSD許可)的內存中數據結構存儲,用做數據庫,緩存和消息代理。 實際上,Redis是高級鍵值存儲。 它具備超高的吞吐率,所以超快,由於它每秒能夠執行約110000個SET,每秒執行約81000個GET。 它還支持一組很是豐富的數據類型來存儲。 實際上,Redis每次都將數據保留在內存中,但也保留在磁盤上。 所以,這須要權衡:驚人的速度和數據集的大小限制(根據內存)。 在本文中,爲了有一些與MySQL相比的基準,咱們將僅使用Redis做爲緩存引擎。

二、先決條件

·在計算機上安裝/配置了PHP,若是沒有,請轉到此處:如何在Ubuntu 16.04上安裝PHP

·在你的計算機上安裝/配置了MySQL,若是沒有,請轉到此處:如何在Ubuntu 16.04上安裝MySQLphp

三、在Ubuntu上安裝Redis

首先,運行如下命令:

 sudo apt update java

sudo apt install redis-servermysql

這些命令將更新apt軟件包並在Ubuntu計算機上安裝Redis。

如今,事實上,要啓用Redis用做服務,你須要經過更新Redis配置文件中存在的受監管指令來對其進行配置。你能夠在這裏輕鬆找到配置文件:

sudo vi /etc/redis/redis.conf複製代碼

默認狀況下,受監管的指令設置爲「否」。你須要將其設置爲:systemd。 更新後,配置文件的這一部分將相似於如下內容:

################################# GENERAL ##################################### redis

# By default Redis does not run as a daemon. Use 'yes' if you need it. sql

# Note that Redis will write a pid file in /var/run/redis.pid when daemonized. 數據庫

daemonize yes 緩存

# If you run Redis from upstart or systemd, Redis can interact with your 安全

# supervision tree. Options: bash

# supervised no - no supervision interaction 服務器

# supervised upstart - signal upstart by putting Redis into SIGSTOP mode

# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET

# supervised auto - detect upstart or systemd method based on

# UPSTART_JOB or NOTIFY_SOCKET environment variables

# Note: these supervision methods only signal "process is ready."

# They do not enable continuous liveness pings back to your supervisor.

supervised systemd

# If a pid file is specified, Redis writes it where specified at startup

# and removes it at exit.

#

# When the server runs non daemonized, no pid file is created if none is

# specified in the configuration. When the server is daemonized, the pid file

# is used even if not specified, defaulting to "/var/run/redis.pid".

#

# Creating a pid file is best effort: if Redis is not able to create it

# nothing bad happens, the server will start and run normally.

pidfile /var/run/redis/redis-server.pid

# Specify the server verbosity level.

# This can be one of:

# debug (a lot of information, useful for development/testing)

# verbose (many rarely useful info, but not a mess like the debug level)

# notice (moderately verbose, what you want in production probably)

四、啓用密碼驗證:

使用密碼身份驗證配置Redis不是強制性的,可是它很是重要(而且也很容易),由於它啓用了Redis的安全因素。 使用密碼配置咱們的Redis服務器很是簡單,能夠經過上述相同的配置文件來完成。 所以,打開配置文件並查找``requirepass''指令。你將默認狀況下注釋該行,只需取消註釋並在此處輸入密碼便可。配置文件將相似於如下內容:

# Require clients to issue AUTH <PASSWORD> before processing any other # commands. This might be useful in environments in which you do not trust # others with access to the host running redis-server. # # This should stay commented out for backward compatibility and because most # people do not need auth (e.g. they run their own servers). # # Warning: since Redis is pretty fast an outside user can try up to # 150k passwords per second against a good box. This means that you should # use a very strong password otherwise it will be very easy to break. requirepass yourpasswordhere # Command renaming. # # It is possible to change the name of dangerous commands in a shared # environment. For instance the CONFIG command may be renamed into something # hard to guess so that it will still be available for internal-use tools # but not available for general clients. # # Example: # # rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52複製代碼

當即保存此文件,並使更改反映在Redis上,請使用如下命令從新啓動Redis服務:

sudo systemctl restart redis.service複製代碼

五、在Ubuntu上安裝PHPRedis:

如今,要使你的PHP代碼可以將Redis用做服務:

·運行如下命令以安裝PHPRedis擴展名:

sudo apt-get install php-redis複製代碼

·將如下行添加到你的php.ini文件中:

extension=redis.so複製代碼

六、工做流程

·僅使用MySQL:

  1. 在[1,10000]之間隨機生成一個密鑰,並在MySQL數據庫中搜索該密鑰
  2. o請記下這樣作所花費的時間
  3. 應使用時間樣原本處理n個此類請求,同時將n逐漸增長爲一、十、100、1000、10000、100000、1000000、1000000

·使用MySQL和Redis:

  1. 隨機生成一個介於[1,10000]之間的密鑰
  2. 將檢查該密鑰是否已經存在/存儲在咱們的Redis中
  3. §若是Redis上有它,咱們不會打MySQL
  4. §若是Redis中不存在該密鑰,咱們將在MySQL數據庫中搜索該密鑰,並將該密鑰存儲到Redis
  5. o請記下這樣作所花費的時間應使用時間樣原本處理

  6. n個此類請求,同時將n逐漸增長爲一、十、100、1000、10000、100000、1000000、1000000

七、源代碼

僅MySQL源代碼

(當咱們嘗試僅從MySQL獲取密鑰時):

<?php   $con = mysqli_connect("localhost","root","admin","blog_db");   for($i = 1; $i <= 10000000; $i = $i *10) {             $startTime = microtime(true);        for($j = 1; $j <= $i; $j++) {             $rand = rand(1, 100000);             $sql = "SELECT VALUE from data WHERE `key` = $rand";                       if (!mysqli_query($con, $sql)) {               echo "Error: " . $sql . "" . mysqli_error($con);             }        }   $endTime = microtime(true);   file_put_contents('/home/ayush/Desktop/temp/blog/mysqlonly.log', $i . ',' . ($endTime - $startTime) . "\n" , FILE_APPEND);   }複製代碼

八、MySQL和Redis源代碼

(當咱們嘗試先從Redis獲取一個密鑰,而後在沒法在Redis上找到該密鑰的狀況下,從MySQL獲取密鑰時):

<?php   $con = mysqli_connect("localhost","root","admin","blog_db");   $client = new Redis();   $client->connect('localhost');   for($i = 1; $i <= 10000000; $i = $i *10) {        $startTime = microtime(true);        for($j = 1; $j <= $i; $j++) {             $rand = rand(1, 100000);             if(!$client->exists($rand)) {                  $client->set($rand, $rand);                  $sql = "SELECT VALUE from data WHERE `key` = $rand";                            if (!mysqli_query($con, $sql)) {                    echo "Error: " . $sql . "" . mysqli_error($con);                  }             }         }        $endTime = microtime(true);        file_put_contents('/home/ayush/Desktop/temp/blog/redis.log', $i . ',' . ($endTime - $startTime) . "\n" , FILE_APPEND);        $client->flushAll();   }複製代碼

基準測試

表格數據

結論

從上面給出的圖形表示能夠很容易地看出,隨着請求數量的顯着增長,

Redis的性能開始顯着提升。 所以,若是處理的請求數量很大,則將Redis這樣的緩存引擎與數據庫一塊兒使用是一個好主意。

抽絲剝繭。細說架構那些事 優銳課

相關文章
相關標籤/搜索