Giter Site home page Giter Site logo

goczmq's Introduction

goczmq Build Status Doc Status

Introduction

A golang interface to CZMQ

Installation

git clone [email protected]:jedisct1/libsodium.git
cd libsodium
./autogen.sh; ./configure; make; make check
sudo make install
sudo ldconfig
git clone [email protected]:zeromq/libzmq.git
cd libzmq
./autogen.sh; ./configure --with-libsodium; make; make check
sudo make install
sudo ldconfig
git clone [email protected]:zeromq/czmq.git
cd czmq
./autogen.sh; ./configure; make; make check
sudo make install
sudo ldconfig
go get github.com/zeromq/goczmq

Usage

package main

import (
	"time"
	"github.com/zeromq/goczmq"
)

func main() {
	payload := []byte("Hello")
	payload_size := len(payload)
	count := 1000000
	
	pullSock, err := goczmq.NewPull("inproc://test")
	if err != nil {
		panic(err)
	}

	defer pullSock.Destroy()

	go func() {
		pushSock, err := goczmq.NewPush("inproc://test")
		if err != nil {
			panic(err)
		}

		defer pushSock.Destroy()
		
		for i := 0; i < count; i++ {
			err = pushSock.SendFrame([]byte("Hello"), 0)
			if err != nil {
				panic(err)
			}
		}
	}()

	startTime := time.Now()

	for i := 0; i < count; i++ {
		msg, err := pullSock.RecvMessage()
		if err != nil {
			panic(err)
		}
		if string(msg[0]) != "Hello" {
			panic("invalid msg!")
		}
	}

	endTime := time.Now()
	elapsed := endTime.Sub(startTime)
	throughput := float64(count) / elapsed.Seconds()
	megabits := float64(throughput*float64(payload_size)*8.0) / 1e6

	log.Printf("message size: %d", payload_size)
	log.Printf("message count: %d", count)
	log.Printf("test time (seconds): %f", elapsed.Seconds())
	log.Printf("mean throughput: %f [msg/s]", throughput)
	log.Printf("mean throughput: %f [Mb/s]", megabits)
}

GoDoc

godoc

See Also

License

This project uses the MPL v2 license, see LICENSE

goczmq's People

Contributors

hintjens avatar indradhanush avatar taotetek avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.