下载了redis得源码tarball,解压后一种传统的编译方式是:
./configure --prefix=/usr/local/redis
make && make install
另一种编译方式是:
meke PREFIX=/usr/local/redis install
请问这两种方式有什么区别么?感觉第二种简单啊。
漂亮男人2017-04-25 09:05:11
The first is the default installation method, the second is the method of specifying the installation directory, you need to find the correct installation path!