linux 安装 redis3.0
- 下載
- 解壓
- 進(jìn)入目錄
- 編譯
make有時(shí)候會(huì)出錯(cuò)
原因分析
在README 有這個(gè)一段話。
Allocator
Selecting a non-default memory allocator when building Redis is done by setting
the MALLOC environment variable. Redis is compiled and linked against libc
malloc by default, with the exception of jemalloc being the default on Linux
systems. This default was picked because jemalloc has proven to have fewer
fragmentation problems than libc malloc.
To force compiling against libc malloc, use:
% make MALLOC=libcTo compile against jemalloc on Mac OS X systems, use:
% make MALLOC=jemalloc說(shuō)關(guān)于分配器allocator, 如果有MALLOC 這個(gè) 環(huán)境變量, 會(huì)有用這個(gè)環(huán)境變量的 去建立Redis。
而且libc 并不是默認(rèn)的 分配器, 默認(rèn)的是 jemalloc, 因?yàn)?jemalloc 被證明 有更少的 fragmentation problems 比libc。
但是如果你又沒(méi)有jemalloc 而只有 libc 當(dāng)然 make 出錯(cuò)。 所以加這么一個(gè)參數(shù)。
解決辦法
make MALLOC=libc轉(zhuǎn)載于:https://www.cnblogs.com/itrena/p/5927139.html
《新程序員》:云原生和全面數(shù)字化實(shí)踐50位技術(shù)專家共同創(chuàng)作,文字、視頻、音頻交互閱讀總結(jié)
以上是生活随笔為你收集整理的linux 安装 redis3.0的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: swift学习笔记-UI篇之UIImag
- 下一篇: Linux下的inode记录