https://github.com/tolitius/zmqure
clojure zmq server
https://github.com/tolitius/zmqure
Last synced: about 1 month ago
JSON representation
clojure zmq server
- Host: GitHub
- URL: https://github.com/tolitius/zmqure
- Owner: tolitius
- Created: 2013-03-08T00:42:41.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-08T00:55:36.000Z (over 12 years ago)
- Last Synced: 2025-06-25T03:04:01.022Z (4 months ago)
- Language: Clojure
- Size: 105 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zmqure
clojure zmq server
## Installing "zmq.jar" into a local maven repo
"zmq.jar" will be created as a part of zmq Java bindings [install](http://www.zeromq.org/bindings:java).
Using a path to this jar, install it to the local maven repo, so "mr. lein" can see it:
```bash
mvn install:install-file -DgroupId=zmq \
-DartifactId=zmq \
-Dversion=2.1.9 \
-Dfile=/zmq-2.1.9.jar \
-Dpackaging=jar \
-DgeneratePom=true
```
## Exporting LD_LIBRARY_PATH
Before running the server, `LD_LIBRARY_PATH` needs to be exported to let the server know where to find zmq C++ libs:
```bash
export LD_LIBRARY_PATH=/usr/local/lib
```
## Usage
```bash
lein run -m zmqure
```
example:
```bash
$ lein run -m zmqure
zmqure is up and listening on 4242
```
## License
Distributed under the Eclipse Public License, the same as Clojure.