溫馨提示×

溫馨提示×

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

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

淺談Redis和Memcache區(qū)別

發(fā)布時間:2020-07-20 11:31:46 來源:億速云 閱讀:180 作者:小豬 欄目:開發(fā)技術

小編這次要給大家分享的是淺談Redis和Memcache區(qū)別,文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

我這段時間在用redis,感覺挺方便的,但比較疑惑在選擇內(nèi)存數(shù)據(jù)庫的時候到底什么時候選擇redis,什么時候選擇memcache,然后就查到下面對應的資料,是來自redis作者的說法(stackoverflow上面)。

You should not care too much about performances. Redis is faster per core with small values, but memcached is able to use multiple cores with a single executable and TCP port without help from the client. Also memcached is faster with big values in the order of 100k. Redis recently improved a lot about big values (unstable branch) but still memcached is faster in this use case. The point here is: nor one or the other will likely going to be your bottleneck for the query-per-second they can deliver.

You should care about memory usage. For simple key-value pairs memcached is more memory efficient. If you use Redis hashes, Redis is more memory efficient. Depends on the use case.

You should care about persistence and replication, two features only available in Redis. Even if your goal is to build a cache it helps that after an upgrade or a reboot your data are still there.

You should care about the kind of operations you need. In Redis there are a lot of complex operations, even just considering the caching use case, you often can do a lot more in a single operation, without requiring data to be processed client side (a lot of I/O is sometimes needed). This operations are often as fast as plain GET and SET. So if you don't need just GEt/SET but more complex things Redis can help a lot (think at timeline caching).

有網(wǎng)友翻譯如下[1]:

    沒有必要過多的關注性能。由于Redis只使用單核,而Memcached可以使用多核,所以在比較上,平均每一個核上Redis在存儲小數(shù)據(jù)時比Memcached性能更高。而在100k以上的數(shù)據(jù)中,Memcached性能要高于Redis,雖然Redis最近也在存儲大數(shù)據(jù)的性能上進行優(yōu)化,但是比起Memcached,還是稍有遜色。說了這么多,結論是,無論你使用哪一個,每秒處理請求的次數(shù)都不會成為瓶頸。

    你需要關注內(nèi)存使用率。對于key-value這樣簡單的數(shù)據(jù)儲存,memcache的內(nèi)存使用率更高。如果采用hash結構,redis的內(nèi)存使用率會更高。當然,這些都依賴于具體的應用場景。

    你需要關注關注數(shù)據(jù)持久化和主從復制時,只有redis擁有這兩個特性。如果你的目標是構建一個緩存在升級或者重啟后之前的數(shù)據(jù)不會丟失的話,那也只能選擇redis。

    你應該關心你需要的操作。redis支持很多復雜的操作,甚至只考慮內(nèi)存的使用情況,在一個單一操作里你常??梢宰龊芏?,而不需要將數(shù)據(jù)讀取到客戶端中(這樣會需要很多的IO操作)。這些復雜的操作基本上和純GET和POST操作一樣快,所以你不只是需要GET/SET而是更多的操作時,redis會起很大的作用。

    對于兩者的選擇還是要看具體的應用場景,如果需要緩存的數(shù)據(jù)只是key-value這樣簡單的結構時,我在項目里還是采用memcache,它也足夠的穩(wěn)定可靠。如果涉及到存儲,排序等一系列復雜的操作時,毫無疑問選擇redis。

關于redis和memcache的不同,下面羅列了一些相關說法,供記錄:

redis和memecache的不同在于[2]:

    1、存儲方式:
    memecache 把數(shù)據(jù)全部存在內(nèi)存之中,斷電后會掛掉,數(shù)據(jù)不能超過內(nèi)存大小
    redis有部份存在硬盤上,這樣能保證數(shù)據(jù)的持久性,支持數(shù)據(jù)的持久化(筆者注:有快照和AOF日志兩種持久化方式,在實際應用的時候,要特別注意配置文件快照參數(shù),要不就很有可能服務器頻繁滿載做dump)。
    2、數(shù)據(jù)支持類型:
    redis在數(shù)據(jù)支持上要比memecache多的多。
    3、使用底層模型不同:
    新版本的redis直接自己構建了VM 機制 ,因為一般的系統(tǒng)調(diào)用系統(tǒng)函數(shù)的話,會浪費一定的時間去移動和請求。
    4、運行環(huán)境不同:
    redis目前官方只支持LINUX 上去行,從而省去了對于其它系統(tǒng)的支持,這樣的話可以更好的把精力用于本系統(tǒng) 環(huán)境上的優(yōu)化,雖然后來微軟有一個小組為其寫了補丁。但是沒有放到主干上

看完這篇關于淺談Redis和Memcache區(qū)別的文章,如果覺得文章內(nèi)容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細節(jié)

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

AI