Show HN: Clojure Redis pubsub client with keep-alive heart beats
1–4 of 4 posts
Re: Show HN: Clojure Redis pubsub client with keep-alive heart beats
#2Re: Show HN: Clojure Redis pubsub client with keep-alive heart beats
#3Very nice! Quick observation, what is the purpose of the # suffix on your variables? I haven’t seen this much and would like to know what it signals, etc.
Re: Show HN: Clojure Redis pubsub client with keep-alive heart beats
#4Very nice! Quick observation, what is the purpose of the # suffix on your variables? I haven’t seen this much and would like to know what it signals, etc.
Thanks! If you are referring to the # in this area of the code - https://github.com/aravindbaskaran/redis-pubsub/blob/master/... - then that refers to a Clojure macros autogensym for symbols created within the macro. If the # is removed, the symbol is resolved from the top namespace where the macro expands. If you are up for some more reading on the weird symbols of Clojure, I have it here - https://hackernoon.com/cl…
Your blog post was great. Thanks for the share.