轉載請註明來源:redis在nodejs中的應用node
redis是一個性能很是好的內存數據庫,部署在應用程序和mysql數據中間作緩存數據庫,能夠極大的提高應用程序的性能,這裏簡單介紹nodejs客戶端操做redis的demo程序mysql
redis裏面總共能夠存儲5種數據類型,分別是字符串,列表、集合、散列、有序集合;這裏將會對這5種數據類型的增刪查改一一處理;git
https://redis.io/download,當前我用的版本穩定版本是4.0.9,解壓以後,進入redis-4.0.9目錄,執行make && sudo make install,稍等幾分鐘就能夠安裝好;github
命令行執行 redis-server便可啓動,默認端口是6379;redis
建立redis-node目錄,在該目錄下yarn init -y以後,執行命令:yarn add redis 便可安裝nodejs的redis客戶端,參考文檔:https://github.com/NodeRedis/...sql
首先要建立客戶端,並鏈接redis服務器,在執行如下鏈接客戶端代碼以前,請確保已經運行了redis服務器:終端上執行redis-server便可,默認端口6379;數據庫
const redis = require('redis'); const client = redis.createClient(); //默認鏈接localhost:6379,具體配置參數能夠參考文檔https://github.com/NodeRedis/node_redis
若是一切順利,咱們就已經建立好了鏈接redis服務器的客戶端,後續操做都是在client對象上進行。segmentfault
雖說是字符串類型,可是能夠存儲的數據包括字符串、整數以及浮點數。緩存
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
有序集合會複雜一點,可是能夠完成很好的應用程序效果,未完待續...
若有紕漏,請留言指正,謝謝,代碼在個人github帳號上:https://github.com/abczhijia/...
參考資料: