zookeeper C API 的安裝和使用指南

來源:互聯網
上載者:User

1
下載 zookeeper-3.3.6.zip
編譯 /zookeeper-3.3.6/src/c
./configure --prefix=/hfx/zookeeper 
make
make install

--prefix 類似這種參數有多中,./configure --help

編譯好後可以看到如下路徑:

[hfx@74 ~]$ cd zookeeper/
[hfx@74 zookeeper]$ ll
total 24
drwxrwxr-x  2 hfx hfx 4096 Mar 11 16:43 bin
drwxrwxr-x  3 hfx hfx 4096 Mar 11 16:43 include
drwxrwxr-x  2 hfx hfx 4096 Mar 11 16:43 lib
說明編譯成功

2
使用:在cmake檔案裡加上編譯好的lib檔案路徑,如果你需要編譯多線程版本用戶端程式,請添加編譯選項 -DTHREADED,同時連結時應連結 zookeeper_mt 庫;如果你需要編譯單線程用戶端程式,請不要添加編譯選項 -DTHREADED,同時連結時應連結 zookeeper_st 庫。
 INCLUDE_DIRECTORIES(
 ./
 /usr/local/include
 /home/hfx/zookeeper/include/c-client-src
 )
 
 LINK_DIRECTORIES(
 /usr/local/lib
 /home/hfx/zookeeper/lib
 )
 
 ADD_EXECUTABLE(test ${SRC_LIST})
 #ADD_LIBRARY(zoo_queue SHARED ${SRC_LIST})
 
 TARGET_LINK_LIBRARIES(test zookeeper_mt pthread dl)

 這樣便保護了編譯好的lib檔案

至於如何使用zookeeper 的api
具體的api可以參考官網,也可以參考其他部落格,推薦這個:
 http://www.cnblogs.com/haippy/archive/2013/02/21/2920280.html

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.