真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php異步插入數(shù)據(jù)庫 php 異步函數(shù)

php 如何異步插入數(shù)據(jù)庫

頁面1.php里面寫具體的執(zhí)行語句

成都創(chuàng)新互聯(lián)公司專注于網(wǎng)站建設(shè),為客戶提供成都網(wǎng)站建設(shè)、成都做網(wǎng)站、網(wǎng)頁設(shè)計(jì)開發(fā)服務(wù),多年建網(wǎng)站服務(wù)經(jīng)驗(yàn),各類網(wǎng)站都可以開發(fā),品牌網(wǎng)站建設(shè),公司官網(wǎng),公司展示網(wǎng)站,網(wǎng)站設(shè)計(jì),建網(wǎng)站費(fèi)用,建網(wǎng)站多少錢,價(jià)格優(yōu)惠,收費(fèi)合理。

頁面2.php直接使用curl調(diào)用頁面1.php 并設(shè)置超時(shí)時(shí)間;根據(jù)你自己的需求寫但是你不一定如果超時(shí)時(shí)間內(nèi) 數(shù)據(jù)庫沒執(zhí)行玩 那你可能就獲取不到插入結(jié)果了

訪問2.php應(yīng)該就是你說的異步了

php redis做mysql的緩存,怎么異步redis同步到mysql數(shù)據(jù)庫

 對于變化頻率非常快的數(shù)據(jù)來說,如果還選擇傳統(tǒng)的靜態(tài)緩存方式(Memocached、File System等)展示數(shù)據(jù),可能在緩存的存取上會(huì)有很大的開銷,并不能很好的滿足需要,而Redis這樣基于內(nèi)存的NoSQL數(shù)據(jù)庫,就非常適合擔(dān)任實(shí)時(shí)數(shù)據(jù)的容器。

但是往往又有數(shù)據(jù)可靠性的需求,采用MySQL作為數(shù)據(jù)存儲(chǔ),不會(huì)因?yàn)閮?nèi)存問題而引起數(shù)據(jù)丟失,同時(shí)也可以利用關(guān)系數(shù)據(jù)庫的特性實(shí)現(xiàn)很多功能。

所以就會(huì)很自然的想到是否可以采用MySQL作為數(shù)據(jù)存儲(chǔ)引擎,Redis則作為Cache。而這種需求目前還沒有看到有特別成熟的解決方案或工具,因此采用Gearman+PHP+MySQL UDF的組合異步實(shí)現(xiàn)MySQL到Redis的數(shù)據(jù)復(fù)制。

MySQL到Redis數(shù)據(jù)復(fù)制方案

無論MySQL還是Redis,自身都帶有數(shù)據(jù)同步的機(jī)制,比較常用的MySQL的Master/Slave模式,就是由Slave端分析Master的binlog來實(shí)現(xiàn)的,這樣的數(shù)據(jù)復(fù)制其實(shí)還是一個(gè)異步過程,只不過當(dāng)服務(wù)器都在同一內(nèi)網(wǎng)時(shí),異步的延遲幾乎可以忽略。

那么理論上也可以用同樣方式,分析MySQL的binlog文件并將數(shù)據(jù)插入Redis。但是這需要對binlog文件以及MySQL有非常深入的理解,同時(shí)由于binlog存在Statement/Row/Mixedlevel多種形式,分析binlog實(shí)現(xiàn)同步的工作量是非常大的。

因此這里選擇了一種開發(fā)成本更加低廉的方式,借用已經(jīng)比較成熟的MySQL UDF,將MySQL數(shù)據(jù)首先放入Gearman中,然后通過一個(gè)自己編寫的PHP Gearman Worker,將數(shù)據(jù)同步到Redis。比分析binlog的方式增加了不少流程,但是實(shí)現(xiàn)成本更低,更容易操作。

Gearman的安裝與使用

Gearman是一個(gè)支持分布式的任務(wù)分發(fā)框架。設(shè)計(jì)簡潔,獲得了非常廣泛的支持。一個(gè)典型的Gearman應(yīng)用包括以下這些部分:

Gearman Job Server:Gearman核心程序,需要編譯安裝并以守護(hù)進(jìn)程形式運(yùn)行在后臺(tái)

Gearman Client:可以理解為任務(wù)的收件員,比如在后臺(tái)執(zhí)行一個(gè)發(fā)送郵件的任務(wù),可以在程序中調(diào)用一個(gè)Gearman Client并傳入郵件的信息,然后就可以將執(zhí)行結(jié)果立即展示給用戶,而任務(wù)本身會(huì)慢慢在后臺(tái)運(yùn)行。

Gearman Worker:任務(wù)的真正執(zhí)行者,一般需要自己編寫具體邏輯并通過守護(hù)進(jìn)程方式運(yùn)行,Gearman Worker接收到Gearman Client傳遞的任務(wù)內(nèi)容后,會(huì)按順序處理。

以前曾經(jīng)介紹過類似的后臺(tái)任務(wù)處理項(xiàng)目Resque。兩者的設(shè)計(jì)其實(shí)非常接近,簡單可以類比為:

Gearman Job Server:對應(yīng)Resque的Redis部分

Gearman Client:對應(yīng)Resque的Queue操作

Gearman Worker:對應(yīng)Resque的Worker和Job

這里之所以選擇Gearman而不是Resque是因?yàn)镚earman提供了比較好用的MySQL UDF,工作量更小。

安裝Gearman及PHP Gearman擴(kuò)展

以下均以Ubuntu12.04為例。

apt-get install gearman gearman-server libgearman-dev

檢查Gearman的運(yùn)行狀況:

/etc/init.d/gearman-job-server status

* gearmand is running

說明Gearman已經(jīng)安裝成功。

PHP的Gearman擴(kuò)展可以通過pecl直接安裝

pecl install gearman

echo "extension=gearman.so"/etc/php5/conf.d/gearman.ini

service php5-fpm restart

但是實(shí)測發(fā)現(xiàn)ubuntu默認(rèn)安裝的gearman版本過低,直接運(yùn)行pecl install gearman會(huì)報(bào)錯(cuò)

configure: error: libgearman version 1.1.0or later required

因此Gearman + PHP擴(kuò)展建議通過編譯方式安裝,這里為了簡單說明,選擇安裝舊版本擴(kuò)展:

pecl install gearman-1.0.3

Gearman + PHP實(shí)例

為了更容易理解后文Gearman的運(yùn)行流程,這里不妨從一個(gè)最簡單的Gearman實(shí)例來說明,比如要進(jìn)行一個(gè)文件處理的操作,首先編寫一個(gè)Gearman Client并命名為client.php:

?php

$client =newGearmanClient();

$client-addServer();

$client-doBackground('writeLog','Log content');

echo '文件已經(jīng)在后臺(tái)操作';

運(yùn)行這個(gè)文件,相當(dāng)于模擬用戶請求一個(gè)Web頁面后,將處理結(jié)束的信息返回用戶:

php client.php

查看一下Gearman的狀況:

(echo status ; sleep 0.1)| netcat127.0.0.14730

可以看到輸出為

writeLog ? ? ? ?100.

說明已經(jīng)在Gearman中建立了一個(gè)名為writeLog的任務(wù),并且有1個(gè)任務(wù)在隊(duì)列等待中。

而上面的4列分別代表當(dāng)前的Gearman的運(yùn)行狀態(tài):

任務(wù)名稱

在等待隊(duì)列中的任務(wù)

正在運(yùn)行的任務(wù)

正在運(yùn)行的Worker進(jìn)程

可以使用watch進(jìn)行實(shí)時(shí)監(jiān)控:

watch -n 1"(echo status; sleep 0.1) | nc 127.0.0.1 4730"

然后我們需要編寫一個(gè)Gearman Worker命名為worker.php:

?php

$worker =newGearmanWorker();

$worker-addServer();

$worker-addFunction('writeLog','writeLog');while($worker-work());function writeLog($job){

$log = $job-workload();file_put_contents(__DIR__ .'/gearman.log', $log ."\n", FILE_APPEND | LOCK_EX);}

Worker使用一個(gè)while死循環(huán)實(shí)現(xiàn)守護(hù)進(jìn)程,運(yùn)行

php worker.php

可以看到Gearman狀態(tài)變?yōu)椋?/p>

writeLog ? ? ? ?001

同時(shí)查看同目錄下gearman.log,內(nèi)容應(yīng)為從Client傳入的值Log content。

通過MySQL UDF + Trigger同步數(shù)據(jù)到Gearman

MySQL要實(shí)現(xiàn)與外部程序互通的最好方式還是通過MySQL UDF(MySQL user defined functions)來實(shí)現(xiàn)。為了讓MySQL能將數(shù)據(jù)傳入Gearman,這里使用了lib_mysqludf_json和gearman-mysql-udf的組合。

安裝lib_mysqludf_json

使用lib_mysqludf_json的原因是因?yàn)镚earman只接受字符串作為入口參數(shù),可以通過lib_mysqludf_json將MySQL中的數(shù)據(jù)編碼為JSON字符串

apt-get install libmysqlclient-dev

wget

unzip master.zip

cd lib_mysqludf_json-master/

rm lib_mysqludf_json.so

gcc $(mysql_config --cflags)-shared -fPIC -o lib_mysqludf_json.so lib_mysqludf_json.c

可以看到重新編譯生成了 lib_mysqludf_json.so 文件,此時(shí)需要查看MySQL的插件安裝路徑:

mysql -u root -pPASSWORD --execute="show variables like '%plugin%';"+---------------+------------------------+|Variable_name|Value|+---------------+------------------------+| plugin_dir ? ?|/usr/lib/mysql/plugin/|+---------------+------------------------+

然后將 lib_mysqludf_json.so 文件復(fù)制到對應(yīng)位置:

cp lib_mysqludf_json.so /usr/lib/mysql/plugin/

最后登入MySQL運(yùn)行語句注冊UDF函數(shù):

CREATE FUNCTION json_object RETURNS STRING SONAME 'lib_mysqludf_json.so';

安裝gearman-mysql-udf

方法幾乎一樣:

apt-get install libgearman-dev

wget

tar -xzf gearman-mysql-udf-0.6.tar.gz

cd gearman-mysql-udf-0.6./configure --with-mysql=/usr/bin/mysql_config

-libdir=/usr/lib/mysql/plugin/

make make install

登入MySQL運(yùn)行語句注冊UDF函數(shù):

CREATE FUNCTION gman_do_background RETURNS STRING SONAME 'libgearman_mysql_udf.so';

CREATE FUNCTION gman_servers_set RETURNS STRING SONAME 'libgearman_mysql_udf.so';

最后指定Gearman服務(wù)器的信息:

SELECT gman_servers_set('127.0.0.1:4730');

通過MySQL觸發(fā)器實(shí)現(xiàn)數(shù)據(jù)同步

最終同步哪些數(shù)據(jù),同步的條件,還是需要根據(jù)實(shí)際情況決定,比如將數(shù)據(jù)表data的數(shù)據(jù)在每次更新時(shí)同步,那么編寫Trigger如下:

DELIMITER $$

CREATE TRIGGER datatoredis AFTER UPDATE ON data

FOR EACH ROW BEGIN

SET @ret=gman_do_background('syncToRedis', json_object(NEW.id as`id`, NEW.volume as`volume`));END$$

DELIMITER ;

嘗試在數(shù)據(jù)庫中更新一條數(shù)據(jù)查看Gearman是否生效。

Gearman PHP Worker將MySQL數(shù)據(jù)異步復(fù)制到Redis

Redis作為時(shí)下當(dāng)熱的NoSQL緩存解決方案無需過多介紹,其安裝及使用也非常簡單:

apt-get install redis-server

pecl install redis

echo "extension=redis.so"/etc/php5/conf.d/redis.ini

然后編寫一個(gè)Gearman Worker:redis_worker.php

#!/usr/bin/env php?

$worker =newGearmanWorker();

$worker-addServer();

$worker-addFunction('syncToRedis','syncToRedis');

$redis =newRedis();

$redis-connect('127.0.0.1',6379);while($worker-work());function syncToRedis($job){global $redis;

$workString = $job-workload();

$work = json_decode($workString);if(!isset($work-id)){returnfalse;}

$redis-set($work-id, $workString);}

最后需要將Worker在后臺(tái)運(yùn)行:

nohup php redis_worker.php

通過這種方式將MySQL數(shù)據(jù)復(fù)制到Redis,經(jīng)測試單Worker基本可以瞬時(shí)完成。

在php中如何向數(shù)據(jù)庫中異步插入圖片

一般不向數(shù)據(jù)庫插入圖片 而是插入圖片的src 通過src找到圖片然后顯示。

(更多異步問題)

?php

session_start();

//array數(shù)組中放圖片的格式

$uptypes = array("image/jpg","image/jpeg","image/png","image/pjpeg","image/gif","image/bmp","image/x-png");

$files =$_FILES["uppic"];

if($files["size"]2097152){ //圖片大小判斷

echo "上傳圖片不能大于2M";

echo "meta http-equiv='REFRESH' CONTENT='1;URL=pic.php'";

exit;

}

$ftype =$files["type"];

if(!in_array($ftype,$uptypes)){ //圖片格式判斷

echo "上傳的圖片文件格式不正確";

echo "meta http-equiv='REFRESH' CONTENT='1;URL=pic.php'";

}

$fname = $files["tmp_name"]; //在服務(wù)器臨時(shí)存儲(chǔ)名稱

$image_info = getimagesize($fname);

$name = $files["name"];

$str_name = pathinfo($name); //以數(shù)組的形式返回文件路勁的信息

$extname = strtolower($str_name["extension"]); //把字符串改為小寫 extensiorn擴(kuò)展名

$upload_dir = "upload/"; //upload文件夾

$file_name = date("YmdHis").rand(1000,9999).".".$extname;

$str_file = $upload_dir.$file_name; //文件目錄

//存入數(shù)據(jù)庫

$con=mysql_connect("localhost","root","");

if(!$con){

die(("數(shù)據(jù)庫連接失敗").mysql_error());

}

mysql_select_db("mywork",$con);

$sql="update user set picpath='$str_file' where user_name='$username'"; //將圖片地址插入數(shù)據(jù)庫mywork

mysql_query($sql,$con);

mysql_close($con);

if(!file_exists($upload_dir)){

mkdir($upload_dir); //創(chuàng)建目錄 成功則返回true 失敗則返回flase

}

if(!move_uploaded_file($files["tmp_name"],$str_file)){ //將上傳的文件移動(dòng)到新的目錄 要移動(dòng)文件 和文件新目錄 成功則返回true

echo "圖片上傳失敗";

echo "meta http-equiv='REFRESH' CONTENT='1;URL=插入失敗后希望跳轉(zhuǎn)的頁面";

}

else{

//echo "img src=".$str_file."";

echo "圖片上傳成功";

echo "meta http-equiv='REFRESH' CONTENT='1;URL=插入成功希望挑戰(zhàn)的頁面";

}


網(wǎng)站標(biāo)題:php異步插入數(shù)據(jù)庫 php 異步函數(shù)
鏈接地址:http://weahome.cn/article/ddipesh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部