中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用MySQL觸發器自動更新memcache

發布時間:2021-11-12 10:50:42 來源:億速云 閱讀:140 作者:小新 欄目:數據庫

小編給大家分享一下如何使用MySQL觸發器自動更新memcache,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

mysql 5.1支持觸發器以及自定義函數接口(UDF)的特性,如果配合libmemcache以及Memcached Functions for MySQL,就能夠實現memcache的自動更新。簡單記錄一下安裝測試步驟。


安裝步驟

安裝memcached,這個步驟很簡單,隨處可見

安裝mysql server 5.1RC,安裝辦法也很大眾,不廢話了

編譯libmemcached,解壓后安裝即可./configure; make; make install

編譯Memcached Functions for MySQL,在找一個最新的版本就是,./configure --with-mysql=/usr/local/mysql/bin/mysql_config --libdir=/usr/local/mysql/lib/mysql/

make

make install

接下來有兩個辦法讓Memcached Functions for MySQL在mysql中生效

在mysql的shell中執行memcached_functions_mysql目錄下的sql/install_functions.sql,這會把memcache function作為UDF加入mysql

運行memcached_functions_mysql源碼目錄下的utils/install.pl,這是一個perl腳本,作用同上一條

測試memcache function

以下測試腳本摘自memcached_functions_mysql的源碼目錄,有興趣可以試試


PLAIN TEXTCODE: drop table if exists urls;

create table urls (

id int(3) not null,

url varchar(64) not null default ,

primary key (id)

);


select memc_servers_set(localhost:11211);

select memc_set(urls:sequence, 0);


DELIMITER |


DROP TRIGGER IF EXISTS url_mem_insert;

CREATE TRIGGER url_mem_insert

BEFORE INSERT ON urls

FOR EACH ROW BEGIN

SET NEW.id= memc_increment(urls:sequence);

SET @mm= memc_set(concat(urls:,NEW.id), NEW.url);

END |


DELIMITER ;


insert into urls (url) values (http://google.com);

insert into urls (url) values (http://www.ooso.net/index.);

insert into urls (url) values (http://www.devdao.net/);

insert into urls (url) values (http://slashdot.org);

insert into urls (url) values (http://.com);

select * from urls;


select memc_get(urls:1);

select memc_get(urls:2);

select memc_get(urls:3);

select memc_get(urls:4);

select memc_get(urls:5);

看完了這篇文章,相信你對“如何使用MySQL觸發器自動更新memcache”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

崇州市| 临朐县| 五河县| 玉屏| 扎囊县| 江川县| 沙坪坝区| 西藏| 边坝县| 沭阳县| 汕头市| 准格尔旗| 木里| 漳平市| 紫金县| 海兴县| 固镇县| 天等县| 隆安县| 罗江县| 海伦市| 来安县| 宜丰县| 营口市| 双城市| 驻马店市| 那曲县| 康定县| 钟祥市| 新民市| 巴彦县| 承德县| 巴中市| 修武县| 安达市| 吴江市| 中超| 太康县| 平阴县| 巴林左旗| 视频|