node.js - for a service that has a *lot* of video uploads, how do i chose between clojure v/s clojurescript + nodejs? -
i need build new system (service) scratch talk multiple frontends (web, mobile (android, ios), etc) , have majority of time spent on video uploads
for service, how decide between 1. clojure 2. clojurescript + node.js (since node.js heavy io)
any general / specific pointers helpful
thanks!
any general / specific pointers helpful
ok, here few:
1) jvm available platform? if not, can't use clojure, try clojurescript.
2) how important access multithreading? javascript not multithreaded, , clojurescript doesn't have multi-threaded core.async, agents, refs.
3) heavy multimedia io need, libraries going you? sure not doing low-level work yourself, leverage existing toolkits. toolkits java-based or node/js-based? if java, use clojure. if js, use clojurescript.
4) mobile. javascript more candidate ios since not jvm platform (see point 1 above). folks using clojurescript on mobile.
Comments
Post a Comment