this is Mikeal's presentation from 'Keeping It Realtime Conference'
watch minute 7:30-8:30.
he say that node, unlike ruby/php/python allow you to store your cache in the server process and instead of an external process (i assume memcached is a common one).
is that due to the fact that we use closures in js, so all the variables are available to all the callbacks?
Does it mean to store my state in simple variables like array and hashes?
I know that a node process has only 1.7GB of memory due to a v8 limitation. isn't it a problem in that regard?
also, can't you have state in ruby by using public variables on the server that are available to any request?