Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何编译和执行Redis ziplist.c作为单独的可执行文件?
我只想执行 ziplist.c 主要功能。
您可以使用以下命令:
gcc -std=c99 -O2 -DZIPLIST_TEST_MAIN ziplist.c zmalloc.c util.c sds.c adlist.c
注意:它将使用默认的系统分配器。