Re: Socket.IO and Clojure?

2013-07-23 Thread Ustun Ozgur
that it's pretty easy to get a basic server up and running in the REPL - and I was able to get several of their demos running unchanged against Clojure, instead of their Java applications, so that was promising. Are there other folks out there doing Socket.IO stuff with Clojure? What approaches

Re: Socket.IO and Clojure?

2013-07-20 Thread Anand Prakash
This is an awesome discussion. Hope this leads to some good frameworks in the community. I was looking at Socket.IO webpage and they seem to support the following: Websocket, Adobe Flash Socket, AJAX long polling, AJAX multipart streaming, Forever Iframe, JSONP polling. I understand some

Re: Socket.IO and Clojure?

2013-07-20 Thread Christopher Martin
Shameless plug: I recently shared a Clojure library for WebSockets and HTTP Kit: http://cljwamp.us It provides some features similar to Socket.IO in regards to pubsub/multiplexing events, and uses the WAMP spec which has several multi-platform options: http://wamp.ws/implementations While

Re: Socket.IO and Clojure?

2013-07-20 Thread Anand Prakash
BTW one more thing. If I am building anything serious. Anything which might be user facing and could potentially be used by even thousands of users, I would never consider Socket.IO. I just feel that it's a super hack which tries to do too many things with no guarantees on anything. On

Re: Socket.IO and Clojure?

2013-07-19 Thread Hoàng Minh Thắng
I had the same concern and have searched for solutions. IMO sockjs is well designed and perfectly fits my needs*.* You can use sockjs with Clojure, though we'll need more tweaks to make it pass all the sockjs specs: https://github.com/jenshaase/methojure/tree/master/methojure-sockjs If you

Re: Socket.IO and Clojure?

2013-07-19 Thread cma
several of their demos running unchanged against Clojure, instead of their Java applications, so that was promising. Are there other folks out there doing Socket.IO stuff with Clojure? What approaches have you taken? Obviously, we could run Node.js and have it hit a Clojure-based REST API

Re: Socket.IO and Clojure?

2013-07-18 Thread Clifton King
My company has been using with Socket.IO for async communication in production for a little while, and while it worked great in private beta, it has serious performance issues (as well as memory leaks) with only ~ 500 concurrent users. Ouch. The trouble with Socket.IO is that it tries to do

Re: Socket.IO and Clojure?

2013-07-17 Thread Anand Prakash
that was promising. Are there other folks out there doing Socket.IO stuff with Clojure? What approaches have you taken? Obviously, we could run Node.js and have it hit a Clojure-based REST API to do the integration, and that might be less pain long term but... -- Sean A Corfield -- (904) 302

Re: Socket.IO and Clojure?

2013-07-17 Thread Sean Corfield
, so that was promising. Are there other folks out there doing Socket.IO stuff with Clojure? What approaches have you taken? Obviously, we could run Node.js and have it hit a Clojure-based REST API to do the integration, and that might be less pain long term but... -- Sean A Corfield -- (904

Socket.IO and Clojure?

2013-07-16 Thread Sean Corfield
pretty easy to get a basic server up and running in the REPL - and I was able to get several of their demos running unchanged against Clojure, instead of their Java applications, so that was promising. Are there other folks out there doing Socket.IO stuff with Clojure? What approaches have you