Linux取得Redis資料庫中hash類型的所有feild或者所有value

來源:互聯網
上載者:User

Redis非常好用,但是對於習慣了關係型資料庫的人來說,查詢起來還是比較麻煩,尤其是對於一個hash類型的key,想取得所有的feild域,官方並沒有直接的介面,但可以通過linux來協助實現,方法如下:

前提,我們已經有了一個hash類型的key,myhash,

hset myhash name zl

hset myhash addr hz

第一,先建立一個.cmd檔案,如getAll.cmd,內容為hgetall myhash

第二,執行命令redis-cli < getAll.cmd  > getAll.result

第三,取出getAll.result中的奇數行即為hash中的feild,偶數行為hash中的value

使用一條命令實現取得myhash中所有的值,就是:

echo  "hgetall myhash"  | redis-cli -p 6380 -a yourPwd | awk 'NR%2==0'

如果是取得所有的feild為:

echo  "hgetall myhash"  | redis-cli -p 6380 -a yourPwd | awk 'NR%2==1'

Redis 的詳細介紹:請點這裡
Redis 的:請點這裡

推薦閱讀:

Redis叢集明細文檔

Ubuntu 12.10下安裝Redis(圖文詳解)+ Jedis串連Redis

Redis系列-安裝部署維護篇

CentOS 6.3安裝Redis

Redis設定檔redis.conf 詳解

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.