怎么在nodejs中應(yīng)用redis數(shù)據(jù)庫(kù)?針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
創(chuàng)新互聯(lián)主要從事網(wǎng)頁(yè)設(shè)計(jì)、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、wap網(wǎng)站建設(shè)(手機(jī)版網(wǎng)站建設(shè))、響應(yīng)式網(wǎng)站開(kāi)發(fā)、程序開(kāi)發(fā)、網(wǎng)站優(yōu)化、微網(wǎng)站、成都微信小程序等,憑借多年來(lái)在互聯(lián)網(wǎng)的打拼,我們?cè)诨ヂ?lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了豐富的成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、網(wǎng)站設(shè)計(jì)、網(wǎng)絡(luò)營(yíng)銷(xiāo)經(jīng)驗(yàn),集策劃、開(kāi)發(fā)、設(shè)計(jì)、營(yíng)銷(xiāo)、管理等多方位專(zhuān)業(yè)化運(yùn)作于一體。redis是一個(gè)性能非常好的內(nèi)存數(shù)據(jù)庫(kù),部署在應(yīng)用程序和mysql數(shù)據(jù)中間做緩存數(shù)據(jù)庫(kù),可以極大的提升應(yīng)用程序的性能,這里簡(jiǎn)單介紹nodejs客戶(hù)端操作redis的demo程序
redis里面總共可以存儲(chǔ)5種數(shù)據(jù)類(lèi)型,分別是字符串,列表、集合、三列、有序集合;這里將會(huì)對(duì)這5種數(shù)據(jù)類(lèi)型的增刪查改一一處理;
1、redis在mac上的安裝:
https://redis.io/download,當(dāng)前我用的版本穩(wěn)定版本是4.0.9,解壓之后,進(jìn)入redis-4.0.9目錄,執(zhí)行make && sudo make install,稍等幾分鐘就可以安裝好;
2、redis啟動(dòng):
命令行執(zhí)行 redis-server即可啟動(dòng),默認(rèn)端口是6379;
3、安裝nodejs客戶(hù)端:
創(chuàng)建redis-node目錄,在該目錄下yarn init -y之后,執(zhí)行命令:yarn add redis 即可安裝nodejs的redis客戶(hù)端,參考文檔:https://github.com/NodeRedis/node_redis
4、在redis-node目錄下,終端上執(zhí)行node,即可在終端上響應(yīng)式的執(zhí)行nodejs代碼,用做測(cè)試,下面開(kāi)始demo程序
首先要?jiǎng)?chuàng)建客戶(hù)端,并連接redis服務(wù)器,在執(zhí)行以下連接客戶(hù)端代碼之前,請(qǐng)確保已經(jīng)運(yùn)行了redis服務(wù)器:終端商執(zhí)行redis-server即可,默認(rèn)端口6379;
const redis = require('redis'); const client = redis.createClient(); //默認(rèn)連接localhost:6379,具體配置參數(shù)可以參考文檔https://github.com/NodeRedis/node_redis
如果一切順利,我們就已經(jīng)創(chuàng)建好了連接redis服務(wù)器的客戶(hù)端,后續(xù)操作都是在client對(duì)象上進(jìn)行。
一、字符串類(lèi)型
雖然說(shuō)是字符串類(lèi)型,但是可以存儲(chǔ)的數(shù)據(jù)包括字符串、整數(shù)以及浮點(diǎn)數(shù)。
var res = client.set('name', 'abczhijia', (err, data) => { console.log('err: ', err, ' data: ', data); }); // err: null data: OK,res的值是true client.get('name', (err, data) => { console.log('err: ', err, ' data: ', data); }); // err: null data: abczhijia
為了簡(jiǎn)單起見(jiàn),我們定義一個(gè)回調(diào)函數(shù),用于輸出數(shù)據(jù):
const cb = (err, data) => { console.log('err: ', err, ' data: ', data, ' data type: ', typeof data); }
下面再針對(duì)整數(shù)做一個(gè)測(cè)試:
client.set('age', 20, cb); //err: null data: OK data type: string client.get('age', cb); //err: null data: 20 data type: string
可以看出,雖然設(shè)置的是整數(shù),輸出來(lái)的時(shí)候,其實(shí)還是字符串,所以如果要進(jìn)行計(jì)算,需要自己在回調(diào)函數(shù)里面做轉(zhuǎn)換
二、列表數(shù)據(jù)類(lèi)型
//從右側(cè)推入 client.rpush('friends', 'mike', 'jhon', cb); //err: null data: 2 data type: number client.lrange('friends', 0, -1, cb); //err: null data: [ 'mike', 'jhon' ] data type: object //從左側(cè)推入 client.lpush('friends', 'sam', 'bob', cb); //err: null data: 4 data type: number client.lrange('friends', 0, -1, cb); // err: null data: [ 'bob', 'sam', 'mike', 'jhon' ] data type: object //從右側(cè)彈出 client.rpop('friends', cb); //err: null data: jhon data type: string //從左側(cè)彈出 client.lpop('friends', cb); //err: null data: bob data type: string //打印看看發(fā)生了啥 client.lrange('friends', 0, -1, cb); // err: null data: [ 'sam', 'mike' ] data type: object //查看索引位置的值 client.lindex('friends', 0, cb); // err: null data: sam data type: string //對(duì)列表進(jìn)行裁剪 client.rpush('friends', 'tom', 'bryant', cb)// err: null data: 4 data type: number client.ltrim('friends', 1, 2, cb); //err: null data: OK data type: string client.lrange('friends', 0, -1, cb); //err: null data: [ 'mike', 'tom' ] data type: object
這里注意,列表的操作可以從右邊rpush推入一個(gè)或者多個(gè)數(shù)據(jù),也可以從左邊lpush推入一個(gè)或多個(gè)數(shù)據(jù);另外,取值的時(shí)候,需要指明需要起止位置,如果要獲取整個(gè),可以把結(jié)束位置寫(xiě)成-1。
三、集合數(shù)據(jù)類(lèi)型
//往集合ids中加幾個(gè)元素 client.sadd('ids', 1, 2, cb); //err: null data: 2 data type: number //查看集合元素 client.smembers('ids', cb); //err: null data: [ '1', '2' ] data type: object //從集合中刪除元素 client.srem('ids', 2, cb); // err: null data: 1 data type: number //看看發(fā)生了啥 client.smembers('ids', cb); //err: null data: [ '1' ] data type: object //看看集合有多少個(gè)元素 client.scard('ids', cb); //err: null data: 1 data type: number //再加幾個(gè)元素進(jìn)去 client.sadd('ids', 3, 5, 8, 9); // //判斷元素是否在集合內(nèi) client.sismember('ids', 8, cb); // err: null data: 1 data type: number client.sismember('ids', 80, cb); //err: null data: 0 data type: number
四、散列數(shù)據(jù)類(lèi)型
//往散列上添加多組鍵值對(duì) client.hmset('phone', 'price', 5888, 'name', 'iphonex', cb); //err: null data: OK data type: string //查看多個(gè)鍵的值 client.hmget('phone', 'price', 'name', cb); //err: null data: [ '5888', 'iphonex' ] data type: object //查看鍵值對(duì)的數(shù)量 client.hlen('phone', cb); //err: null data: 2 data type: number //刪掉其中一個(gè)鍵值對(duì) client.hdel('phone', 'price', cb); //err: null data: 1 data type: number //看看price是否還在? client.hmget('phone', 'price', cb); //err: null data: [ null ] data type: object,原來(lái)只留下了null //再加幾個(gè)屬性 client.hmset('phone', 'vendor', 'apple', 'madein', 'china', cb); //取出所有的鍵值對(duì) client.hgetall('phone', cb); //err: null data: { name: 'iphonex', vendor: 'apple', madein: 'china' } data type: object //取出所有的鍵 client.hkeys('phone', cb); //err: null data: [ 'name', 'vendor', 'madein' ] data type: object //取出所有的值 client.hvals('phone', cb); //err: null data: [ 'iphonex', 'apple', 'china' ] data type: object //判斷鍵是否存在 client.hexists('phone', 'name', cb); //err: null data: 1 data type: number client.hexists('phone', 'price', cb); //err: null data: 0 data type: number
關(guān)于怎么在nodejs中應(yīng)用redis數(shù)據(jù)庫(kù)問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。