您好,登錄后才能下訂單哦!
怎么在nodejs中應用redis數據庫?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
redis是一個性能非常好的內存數據庫,部署在應用程序和mysql數據中間做緩存數據庫,可以極大的提升應用程序的性能,這里簡單介紹nodejs客戶端操作redis的demo程序
redis里面總共可以存儲5種數據類型,分別是字符串,列表、集合、三列、有序集合;這里將會對這5種數據類型的增刪查改一一處理;
1、redis在mac上的安裝:
https://redis.io/download,當前我用的版本穩定版本是4.0.9,解壓之后,進入redis-4.0.9目錄,執行make && sudo make install,稍等幾分鐘就可以安裝好;
2、redis啟動:
命令行執行 redis-server即可啟動,默認端口是6379;
3、安裝nodejs客戶端:
創建redis-node目錄,在該目錄下yarn init -y之后,執行命令:yarn add redis 即可安裝nodejs的redis客戶端,參考文檔:https://github.com/NodeRedis/node_redis
4、在redis-node目錄下,終端上執行node,即可在終端上響應式的執行nodejs代碼,用做測試,下面開始demo程序
首先要創建客戶端,并連接redis服務器,在執行以下連接客戶端代碼之前,請確保已經運行了redis服務器:終端商執行redis-server即可,默認端口6379;
const redis = require('redis'); const client = redis.createClient(); //默認連接localhost:6379,具體配置參數可以參考文檔https://github.com/NodeRedis/node_redis
如果一切順利,我們就已經創建好了連接redis服務器的客戶端,后續操作都是在client對象上進行。
一、字符串類型
雖然說是字符串類型,但是可以存儲的數據包括字符串、整數以及浮點數。
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
為了簡單起見,我們定義一個回調函數,用于輸出數據:
const cb = (err, data) => { console.log('err: ', err, ' data: ', data, ' data type: ', typeof data); }
下面再針對整數做一個測試:
client.set('age', 20, cb); //err: null data: OK data type: string client.get('age', cb); //err: null data: 20 data type: string
可以看出,雖然設置的是整數,輸出來的時候,其實還是字符串,所以如果要進行計算,需要自己在回調函數里面做轉換
二、列表數據類型
//從右側推入 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 //從左側推入 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 //從右側彈出 client.rpop('friends', cb); //err: null data: jhon data type: string //從左側彈出 client.lpop('friends', cb); //err: null data: bob data type: string //打印看看發生了啥 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 //對列表進行裁剪 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推入一個或者多個數據,也可以從左邊lpush推入一個或多個數據;另外,取值的時候,需要指明需要起止位置,如果要獲取整個,可以把結束位置寫成-1。
三、集合數據類型
//往集合ids中加幾個元素 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 //看看發生了啥 client.smembers('ids', cb); //err: null data: [ '1' ] data type: object //看看集合有多少個元素 client.scard('ids', cb); //err: null data: 1 data type: number //再加幾個元素進去 client.sadd('ids', 3, 5, 8, 9); // //判斷元素是否在集合內 client.sismember('ids', 8, cb); // err: null data: 1 data type: number client.sismember('ids', 80, cb); //err: null data: 0 data type: number
四、散列數據類型
//往散列上添加多組鍵值對 client.hmset('phone', 'price', 5888, 'name', 'iphonex', cb); //err: null data: OK data type: string //查看多個鍵的值 client.hmget('phone', 'price', 'name', cb); //err: null data: [ '5888', 'iphonex' ] data type: object //查看鍵值對的數量 client.hlen('phone', cb); //err: null data: 2 data type: number //刪掉其中一個鍵值對 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,原來只留下了null //再加幾個屬性 client.hmset('phone', 'vendor', 'apple', 'madein', 'china', cb); //取出所有的鍵值對 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
關于怎么在nodejs中應用redis數據庫問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。