Skip to content

Instantly share code, notes, and snippets.

@gjcourt
Last active December 15, 2015 03:09
Show Gist options
  • Save gjcourt/5192537 to your computer and use it in GitHub Desktop.
Save gjcourt/5192537 to your computer and use it in GitHub Desktop.
(def ^:dynamic *zk-connection* “localhost:2181”)
(def kafka-producer (atom nil))
(defn get-connection []
(if-not @kafka-producer
(swap! kafka-producer (fn [a] (producer {“zk.connect” *zk-connection*}))))
kafka-producer)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment