Skip to content

Simple interface to wrap Akka's distributed pubsub capabilities

Notifications You must be signed in to change notification settings

brownsys/pubsub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DistributedPubSub

A simple pub-sub implementation with a single server.

Depends on:

  • Typesafe Config
  • Protocol Buffers
  • ZeroMQ

REQUIRED INSTALLATION:

  • Protocol Buffers 2.5.0
    • Note that the protocol buffers version provided by your operating system might be an earlier version

    • Install protocol buffers 2.5.0 http://code.google.com/p/protobuf/downloads/list

       apt-get remove protobuf-compiler
       curl -# -O https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz
       gunzip protobuf-2.5.0.tar.gz
       tar -xvf protobuf.2.5.0.tar
       cd protobuf-2.5.0
       ./configure --prefix=/usr
       make
       make install
      
    • Ensure the protoc executable is on your PATH (test with 'protoc --version')

OPTIONAL INSTALLATION

BUILDING THIS PACKAGE

*** By default, will NOT use native bindings; will choose pure java implementation *** mvn clean package install

To install using native bindings: mvn clean package install -Pnative

About

Simple interface to wrap Akka's distributed pubsub capabilities

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages