Skip to content

dbushenko/cljkafka

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

cljkafka

A simple Clojure library designed to help using Kafka.

The library is very simple yet customizable enough.

Usage

(require '[cljkafka.core :refer :all])

(def p (create-producer))
(send! p "test" "hello from clojure!")

(def c (create-consumer))
(subscribe c "test")
(consume-loop c "test" println)

The library implements a common pattern of consuming messages using loop. More on this see here.

Copyright © 2016 by Dmitry Bushenko

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

About

Simple kafka wrapper designed for easy using

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published