Fork me on GitHub
#beginners
<
2017-02-23
>
placeboza09:02:27

Out of interest, what's the preferred choice between Sente, Chord and Websockets-async for clojure/clojurescript comms ?

placeboza09:02:05

Im thinking Sente atm

val_waeselynck11:02:45

@placeboza don't rule out AJAX too fast 🙂

gklijs13:02:46

@placeboza I use plain websockets for it in my pet project

placeboza13:02:54

and not discounting ajax 🙂

tbaldridge14:02:29

my choice: the simplest approach that will get the job done. What are your requirements? As mentioned, bare HTTP calls are going to work pretty well if you don't need two-way comms.

sveri14:02:30

+1 I introduce websockets (sente in clj case) only if I need to push data from the server to the client.

gklijs14:02:56

@placeboza I have some clojure/clojurescript communication in my pet project, but just use plain websockets

placeboza14:02:36

makes sense, but if you were choosing websockets, it'd usually be sente, sounds like