nanomsg

    2熱度

    2回答

    我一直在使用zeromq一段時間並廣泛使用多部分消息。在C++中,我使用zmq_sendiov/zmq_recviov發送/ recv多部分消息。好處是我可以將每個消息的'框架'放在一個iovec中,並且一次使用呼叫發送/ recv。 最近我決定給nanomsg一個嘗試,我意識到nanomsg有nn_sendmsg/nn_sendmsg它也使用iovec。問題是:nanomsg確保接收到的iove

    1熱度

    1回答

    我正在嘗試寫一個測量員響應者模式。但它拋出的錯誤: nanomsg.NanoMsgAPIError: Operation cannot be performed in this state from nanomsg import * s1 = Socket(SURVEYOR) s1.bind('ipc://bob') s1.send(b'hello nanomsg') print(s1.

    0熱度

    1回答

    我希望能使用類似nanomsg(或ZeroMQ)。特別是管道模式。我想根據數據進行負載平衡,而不是發送數據的循環方法。 有什麼建議嗎?

    1熱度

    1回答

    我正在使用C#數據綁定爲nanomsg。我有一個外部程序在url ipc:// report_data上發送Google Protocol Buffer消息,我的訂閱者連接到同一個確切的url。所以,我希望我的訂閱者能夠檢索在該URL上發送的任何數據,但事實並非如此。我使用函數Receive()並且沒有任何東西通過。只有一種類型的消息通過該URL傳遞,所以我不關心這個話題。有沒有人有nanomsg

    2熱度

    1回答

    我想在macOS上用LuaRocks安裝nn。但運行 sudo luarocks install nn //I use sudo because otherwise I don't have permission to install 當我收到錯誤 lnn.c:4:9: fatal error: 'nanomsg/nn.h' file not found include ^1 error g

    2熱度

    1回答

    我正試圖學習nanomsg庫。 我正在使用版本C和Python的代碼示例。我試圖用Python腳本來訂閱C服務,但沒有任何事情發生。 這裏是我的兩個代碼: 的Python用戶 from __future__ import print_function from nanomsg import Socket, PAIR, PUB s2 = Socket(PAIR) while(True):

    1熱度

    1回答

    我在調用全局級聲明的套接字功能時遇到問題。 from nanomsg import Socket, PAIR, PUB s2 = Socket(PAIR) s2.connect('tcp://127.0.0.1:49234') s2.send(b'connect') def myfunc(): global s2 s2.send(b'Got here!') my

    0熱度

    1回答

    我嘗試建立nanomsg爲Android ~/work/android-ndk-r10e/ndk-build ,我有錯誤: In file included from /home/roman/work/Nano/app/jni/src/utils/efd.c:28:0: /home/roman/work/Nano/app/jni/src/utils/efd_eventfd.inc:27:25

    4熱度

    1回答

    我所經歷的nanomsg使用率IPC,並想用SURVEY -archetype架構描述here。 在這裏,進程作爲客戶端和服務器運行並交換數據。現在服務器已經下面的代碼(在所提供的鏈接也列): int server (const char *url) { int sock = nn_socket (AF_SP, NN_SURVEYOR); assert (sock >= 0)

    0熱度

    1回答

    我正嘗試在mingw上構建nanomsg,使用mxe從ubuntu進行交叉編譯。目標主機是x86_64。我建立它很好,但它不會鏈接。我得到像 undefined reference to 'imp__nn_freemsg' 我認爲這是一個靜態庫問題。我再次使用 ./configure --enable-static --disable-shared ... 同樣的問題。鏈接libn​​an